Skip to content

Commit

Permalink
fix mypy deps
Browse files Browse the repository at this point in the history
  • Loading branch information
erikwrede committed Oct 27, 2024
1 parent c97748e commit b16374d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,9 @@ def run_tests(self):
"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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ commands =
[testenv:mypy]
basepython = python3.10
deps =
mypy>=1.10,<2
mypy>=1.10,<2, .[dev]
commands =
mypy graphene

Expand Down

0 comments on commit b16374d

Please sign in to comment.