Skip to content

Commit a1aa19d

Browse files
committed
revert(noxfile): Revert noxfile.py to state before 442929366e8c32de33572fcdbbb01d7cda1929cb
1 parent 98c7b88 commit a1aa19d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666

6767
UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
6868
UNIT_TEST_STANDARD_DEPENDENCIES = [
69-
"setuptools",
69+
"mock",
70+
"asyncmock",
7071
PYTEST_VERSION,
7172
"pytest-asyncio",
7273
"pytest-cov",
@@ -263,13 +264,12 @@ def unit_noextras(session):
263264
run_unit(session, install_test_extra=False)
264265

265266

266-
@nox.session(python="3.13")
267+
@nox.session(python=DEFAULT_PYTHON_VERSION)
267268
def mypy(session):
268269
"""Run type checks with mypy."""
269270
# Editable mode is not compatible with mypy when there are multiple
270271
# package directories. See:
271272
# https://github.com/python/mypy/issues/10564#issuecomment-851687749
272-
session.install("--index-url", "https://pypi.org/simple", "setuptools")
273273
session.install(".")
274274

275275
# Just install the dependencies' type info directly, since "mypy --install-types"

0 commit comments

Comments
 (0)