Skip to content

Commit

Permalink
Use 3.12 and not 3.7 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
multimeric committed May 23, 2024
1 parent 74599d3 commit 0a90f4c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3

Expand All @@ -25,14 +25,12 @@ jobs:
run: poetry install --with lint --with tests

- uses: pre-commit/action@v3.0.0
if: matrix['python-version'] != '3.7'

- name: Test with pytest
run: |
poetry run pytest
- name: Test readme notebook
if: matrix['python-version'] != '3.7'
run: |
poetry install --with readme
poetry run jupyter nbconvert --to markdown README.ipynb
Expand Down

0 comments on commit 0a90f4c

Please sign in to comment.