Skip to content

Commit 0fc3418

Browse files
authored
Merge pull request #129 from ucl-bug/poetry
Moved to poetry
2 parents 866b0e0 + 1365210 commit 0fc3418

23 files changed

+524
-748
lines changed

.gitchangelog.rc

Lines changed: 0 additions & 303 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 'Setup Python + Poetry environment'
2+
description: 'Setup Python + Poetry environment'
3+
4+
inputs:
5+
python-version:
6+
required: false
7+
description: 'Python version'
8+
default: '3.10'
9+
outputs: {}
10+
runs:
11+
using: 'composite'
12+
steps:
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: ${{inputs.python-version}}
16+
- name: Install poetry
17+
run: python -m pip install poetry
18+
shell: bash
19+
- name: Create virtual environment
20+
run: poetry install --with=dev
21+
shell: bash

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72

83
updates:
94
- package-ecosystem: "pip" # See documentation for possible values
105
directory: "/" # Location of package manifests
116
schedule:
127
interval: "daily"
13-
ignore:
14-
# Ignore updates to "black" because we'd need to reformat everything
15-
- dependency-name: "black"

0 commit comments

Comments
 (0)