Skip to content

Commit 0a90f4c

Browse files
committed
Use 3.12 and not 3.7 in CI
1 parent 74599d3 commit 0a90f4c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
10+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1111
steps:
1212
- uses: actions/checkout@v3
1313

@@ -25,14 +25,12 @@ jobs:
2525
run: poetry install --with lint --with tests
2626

2727
- uses: pre-commit/[email protected]
28-
if: matrix['python-version'] != '3.7'
2928

3029
- name: Test with pytest
3130
run: |
3231
poetry run pytest
3332
3433
- name: Test readme notebook
35-
if: matrix['python-version'] != '3.7'
3634
run: |
3735
poetry install --with readme
3836
poetry run jupyter nbconvert --to markdown README.ipynb

0 commit comments

Comments
 (0)