Skip to content

Commit 4733dad

Browse files
committed
Update packages, Python to 3.11+ and dev packages
1 parent a642cc9 commit 4733dad

File tree

4 files changed

+151
-462
lines changed

4 files changed

+151
-462
lines changed

.github/workflows/python-test.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,14 @@ jobs:
66
python-test:
77
runs-on: ubuntu-latest
88

9-
strategy:
10-
matrix:
11-
python-version: [3.8]
12-
139
steps:
1410
-
15-
uses: actions/checkout@v2
11+
uses: actions/checkout@v4
1612
-
1713
name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1915
with:
20-
python-version: ${{ matrix.python-version }}
16+
python-version: '3.11'
2117
-
2218
name: Install dependencies
2319
run: |
@@ -27,7 +23,7 @@ jobs:
2723
-
2824
name: Run tests
2925
run: |
30-
poetry run isort --check-only --diff --line-width=100 .
31-
poetry run black --check --diff --line-length=100 .
26+
poetry run isort --check-only --diff .
27+
poetry run black --check --diff .
3228
poetry run pylint --fail-under 7.0 $(git ls-files '*.py')
33-
poetry run pytest
29+
poetry run pytest

0 commit comments

Comments
 (0)