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.
1 parent 0eed1c5 commit dc9d8a6Copy full SHA for dc9d8a6
.github/workflows/mypy.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Setup Python
16
uses: actions/setup-python@v5
17
with:
18
- python-version: "3.14"
+ python-version: "3.10"
19
- name: Install nox
20
run: |
21
python -m pip install --upgrade setuptools pip wheel
noxfile.py
@@ -259,7 +259,7 @@ def unit_noextras(session):
259
run_unit(session, install_test_extra=False)
260
261
262
-@nox.session(python=DEFAULT_PYTHON_VERSION)
+@nox.session(python="3.10")
263
def mypy(session):
264
"""Run type checks with mypy."""
265
# Editable mode is not compatible with mypy when there are multiple
0 commit comments