Skip to content

Commit 348ce60

Browse files
committed
Run github actions with python versions up to 3.12
Reverted flake8 removal and updated dependencies
1 parent f3f9480 commit 348ce60

File tree

4 files changed

+464
-408
lines changed

4 files changed

+464
-408
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python-version: [3.8, 3.9]
24+
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
2525

2626
steps:
2727
- uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
python -m pip install --upgrade pip
35-
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
35+
pip install -r tests/requirements.txt
3636
- name: Lint with flake8
3737
run: |
3838
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)