From b16374dacacd58877e22a4559c746afdcc8b98ef Mon Sep 17 00:00:00 2001 From: Erik Wrede Date: Sun, 27 Oct 2024 20:35:37 +0100 Subject: [PATCH] fix mypy deps --- setup.py | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index bddc76b3..329438ef 100644 --- a/setup.py +++ b/setup.py @@ -51,10 +51,9 @@ tests_require = [ "pytest-mock>=3,<4", "pytest-asyncio>=0.16,<2", "coveralls>=3.3,<5", - "types-python-dateutil>=2.8.1,<3", ] -dev_requires = ["ruff==0.5.0"] + tests_require +dev_requires = ["ruff==0.5.0", "types-python-dateutil>=2.8.1,<3"] + tests_require setup( name="graphene", diff --git a/tox.ini b/tox.ini index 52a7e552..327bdb37 100644 --- a/tox.ini +++ b/tox.ini @@ -20,7 +20,7 @@ commands = [testenv:mypy] basepython = python3.10 deps = - mypy>=1.10,<2 + mypy>=1.10,<2, .[dev] commands = mypy graphene