Skip to content

Commit eef6640

Browse files
committed
Restrict python patch version in ci
This can be reverted once a mypy version with python/mypy#13500 is out
1 parent 1d60455 commit eef6640

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pytest.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, windows-latest]
21-
python-version: ["3.7", "3.8", "3.9", "3.10"]
21+
# we need to pin to 3.10.6 until
22+
# https://github.com/python/mypy/pull/13500
23+
# is part of a released version of mypy
24+
python-version: ["3.7", "3.8", "3.9", "3.10.6"]
2225
exclude:
2326
- os: windows-latest
2427
python-version: "3.7"

0 commit comments

Comments
 (0)