Skip to content

Commit

Permalink
Add support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxG87 authored Feb 6, 2024
2 parents d161061 + 81a0781 commit ced79f0
Show file tree
Hide file tree
Showing 4 changed files with 343 additions and 352 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
dependency-extras: [""]

steps:
Expand All @@ -25,10 +25,10 @@ jobs:
- name: Check formatting with black
run: poetry run black --check .
- name: Check import ordering with ruff
run: poetry run ruff check --format=github --select I .
run: poetry run ruff check --output-format github --select I .
- name: Check static typing with mypy
run: poetry run mypy .
- name: Lint with ruff
run: poetry run ruff check --format=github .
run: poetry run ruff check --output-format github .
- name: Test with pytest
run: poetry run pytest --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html
Loading

0 comments on commit ced79f0

Please sign in to comment.