fix mypy deps

This commit is contained in:
Erik Wrede 2024-10-27 20:36:59 +01:00
parent b16374daca
commit ffd86e405c
No known key found for this signature in database
GPG Key ID: 2180166EDF80A9DA
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ tests_require = [
"coveralls>=3.3,<5", "coveralls>=3.3,<5",
] ]
dev_requires = ["ruff==0.5.0", "types-python-dateutil>=2.8.1,<3"] + tests_require dev_requires = ["ruff==0.5.0", "types-python-dateutil>=2.8.1,<3", "mypy>=1.10,<2"] + tests_require
setup( setup(
name="graphene", name="graphene",

View File

@ -20,7 +20,7 @@ commands =
[testenv:mypy] [testenv:mypy]
basepython = python3.10 basepython = python3.10
deps = deps =
mypy>=1.10,<2, .[dev] .[dev]
commands = commands =
mypy graphene mypy graphene