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 b16374d commit ffd86e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def run_tests(self):
"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(
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, .[dev]
.[dev]
commands =
mypy graphene

Expand Down

0 comments on commit ffd86e4

Please sign in to comment.