We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b098ff + b45ae86 commit 27bf23cCopy full SHA for 27bf23c
.github/workflows/pythonpackage.yml
@@ -97,10 +97,11 @@ jobs:
97
98
- name: Check types with mypy
99
run: |
100
- mypy --python-version=${{ matrix.python-version }}
+ mypy --python-version="${PYTHON_VERSION%t}" # Version only, with no "t" for free-threaded.
101
env:
102
MYPY_FORCE_COLOR: "1"
103
TERM: "xterm-256color" # For color: https://github.com/python/mypy/issues/13817
104
+ PYTHON_VERSION: ${{ matrix.python-version }}
105
# With new versions of mypy new issues might arise. This is a problem if there is
106
# nobody able to fix them, so we have to ignore errors until that changes.
107
continue-on-error: true
0 commit comments