Skip to content
Prev Previous commit
Next Next commit
Skip mypy when Python < 3.9
  • Loading branch information
George-Ogden committed Nov 28, 2025
commit 9decf740ad2f1d89b55bda3a42880fa4f7b652ea
1 change: 1 addition & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ jobs:
continue-on-error: true

- name: Check types with mypy
if: matrix.python-version != '3.7' && matrix.python-version != '3.8'
run: |
mypy --python-version="${PYTHON_VERSION%t}" # Version only, with no "t" for free-threaded.
env:
Expand Down
Loading