Skip to content

Commit

Permalink
Restrict python patch version in ci
Browse files Browse the repository at this point in the history
This can be reverted once a mypy version with python/mypy#13500 is out
  • Loading branch information
jenshnielsen committed Sep 12, 2022
1 parent 1d60455 commit eef6640
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
# we need to pin to 3.10.6 until
# https://github.com/python/mypy/pull/13500
# is part of a released version of mypy
python-version: ["3.7", "3.8", "3.9", "3.10.6"]
exclude:
- os: windows-latest
python-version: "3.7"
Expand Down

0 comments on commit eef6640

Please sign in to comment.