Skip to content

Commit dd5a99c

Browse files
committed
Update dependencies
1 parent a657792 commit dd5a99c

File tree

4 files changed

+63
-62
lines changed

4 files changed

+63
-62
lines changed

poetry.lock

+53-52
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ optional = true
4949

5050
[tool.poetry.group.test.dependencies]
5151
pytest = "^7.1"
52-
pytest-asyncio = ">=0.19,<1"
52+
pytest-asyncio = ">=0.20,<1"
5353
pytest-benchmark = "^3.4"
54-
pytest-cov = "^3.0"
54+
pytest-cov = "^4.0"
5555
pytest-describe = "^2.0"
5656
pytest-timeout = "^2.1"
5757
tox = "^3.26"
@@ -65,7 +65,7 @@ flake8 = "^5.0"
6565
flake8-bandit = "^4.1"
6666
flake8-bugbear = "22.9.23"
6767
isort = "^5.10"
68-
mypy = "0.971"
68+
mypy = "0.982"
6969
bump2version = ">=1.0,<2"
7070

7171
[tool.poetry.group.doc]

src/graphql/execution/execute.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ def __init__(
210210
self.context_value = context_value
211211
self.operation = operation
212212
self.variable_values = variable_values
213-
self.field_resolver = field_resolver # type: ignore
214-
self.type_resolver = type_resolver # type: ignore
215-
self.subscribe_field_resolver = subscribe_field_resolver # type: ignore
213+
self.field_resolver = field_resolver
214+
self.type_resolver = type_resolver
215+
self.subscribe_field_resolver = subscribe_field_resolver
216216
self.errors = errors
217217
self.middleware_manager = middleware_manager
218218
if is_awaitable:
@@ -790,7 +790,7 @@ def complete_abstract_value(
790790
that value, then complete the value for that type.
791791
"""
792792
resolve_type_fn = return_type.resolve_type or self.type_resolver
793-
runtime_type = resolve_type_fn(result, info, return_type) # type: ignore
793+
runtime_type = resolve_type_fn(result, info, return_type)
794794

795795
if self.is_awaitable(runtime_type):
796796
runtime_type = cast(Awaitable, runtime_type)

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ commands =
3636
[testenv:mypy]
3737
basepython = python3.9
3838
deps =
39-
mypy==0.971
39+
mypy==0.982
4040
pytest>=7.1,<8
4141
commands =
4242
mypy src tests
@@ -52,9 +52,9 @@ commands =
5252
[testenv]
5353
deps =
5454
pytest>=7.1,<8
55-
pytest-asyncio>=0.19,<1
55+
pytest-asyncio>=0.20,<1
5656
pytest-benchmark>=3.4,<4
57-
pytest-cov>=3,<4
57+
pytest-cov>=4,<5
5858
pytest-describe>=2,<3
5959
pytest-timeout>=2,<3
6060
py37: typing-extensions>=4.3,<5

0 commit comments

Comments
 (0)