@@ -35,6 +35,7 @@ packages = [
3535 { include = " CODEOWNERS" , format = " sdist" },
3636 { include = " SECURITY.md" , format = " sdist" }
3737]
38+ exclude = [" docs/_build/**" ]
3839
3940[tool .poetry .urls ]
4041Changelog = " https://github.com/graphql-python/graphql-core/releases"
@@ -51,29 +52,32 @@ optional = true
5152
5253[tool .poetry .group .test .dependencies ]
5354pytest = [
54- { version = " ^8.0 " , python = " >=3.8" },
55+ { version = " ^8.1 " , python = " >=3.8" },
5556 { version = " ^7.4" , python = " <3.8" }
5657]
5758pytest-asyncio = [
58- { version = " ^0.23.5 " , python = " >=3.8" },
59+ { version = " ^0.23.6 " , python = " >=3.8" },
5960 { version = " ~0.21.1" , python = " <3.8" }
6061]
6162pytest-benchmark = " ^4.0"
62- pytest-cov = " ^4.1"
63+ pytest-cov = [
64+ { version = " ^5.0" , python = " >=3.8" },
65+ { version = " ^4.1" , python = " <3.8" },
66+ ]
6367pytest-describe = " ^2.2"
64- pytest-timeout = " ^2.2 "
68+ pytest-timeout = " ^2.3 "
6569tox = [
66- { version = " ^4.13 " , python = " >=3.8" },
70+ { version = " ^4.14 " , python = " >=3.8" },
6771 { version = " ^3.28" , python = " <3.8" }
6872]
6973
7074[tool .poetry .group .lint ]
7175optional = true
7276
7377[tool .poetry .group .lint .dependencies ]
74- ruff = " >=0.2.1 ,<0.3 "
78+ ruff = " >=0.3.5 ,<0.4 "
7579mypy = [
76- { version = " ^1.8 " , python = " >=3.8" },
80+ { version = " ^1.9 " , python = " >=3.8" },
7781 { version = " ~1.4" , python = " <3.8" }
7882]
7983bump2version = " >=1.0,<2"
@@ -253,7 +257,8 @@ exclude_lines = [
253257 " if MYPY:" ,
254258 " if TYPE_CHECKING:" ,
255259 ' ^\s+\.\.\.$' ,
256- ' ^\s+pass$'
260+ ' ^\s+pass$' ,
261+ ' : \.\.\.$'
257262]
258263ignore_errors = true
259264
0 commit comments