Skip to content

Commit 2d2bd82

Browse files
committed
Run github actions with python versions up to 3.12
Reverted flake8 removal and updated dependencies Reverted python support to 3.8.1+
1 parent f3f9480 commit 2d2bd82

File tree

4 files changed

+635
-472
lines changed

4 files changed

+635
-472
lines changed

.github/workflows/main.yml

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

2631
steps:
2732
- uses: actions/checkout@v2
@@ -32,7 +37,7 @@ jobs:
3237
- name: Install dependencies
3338
run: |
3439
python -m pip install --upgrade pip
35-
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
40+
pip install -r tests/requirements.txt
3641
- name: Lint with flake8
3742
run: |
3843
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)