@@ -7,7 +7,7 @@ name = "ariadne-codegen"
77description = " Generate fully typed GraphQL client from schema, queries and mutations!"
88authors = [{ name = " Mirumee Software" , email = " ariadne@mirumee.com" }]
99dynamic = [" version" ]
10- requires-python = " >= 3.9 "
10+ requires-python = " >= 3.10 "
1111readme = " README.md"
1212license = " BSD-3-Clause"
1313license-files = [" LICENSE" ]
@@ -17,15 +17,14 @@ classifiers = [
1717 " License :: OSI Approved :: BSD License" ,
1818 " Operating System :: OS Independent" ,
1919 " Programming Language :: Python" ,
20- " Programming Language :: Python :: 3.9" ,
2120 " Programming Language :: Python :: 3.10" ,
2221 " Programming Language :: Python :: 3.11" ,
2322 " Programming Language :: Python :: 3.12" ,
2423 " Programming Language :: Python :: 3.13" ,
2524 " Topic :: Software Development :: Libraries :: Python Modules" ,
2625]
2726dependencies = [
28- " click~=8.2 " ,
27+ " click~=8.1.8 " ,
2928 " graphql-core>=3.2.0,<3.3" ,
3029 " toml~=0.10" ,
3130 " httpx~=0.23" ,
@@ -102,12 +101,12 @@ features = ["test"]
102101extra-args = []
103102
104103[[tool .hatch .envs .hatch-test .matrix ]]
105- python = [" 3.9 " , " 3. 10" , " 3.11" , " 3.12" , " 3.13" ]
104+ python = [" 3.10" , " 3.11" , " 3.12" , " 3.13" ]
106105
107106# # Types configuration
108107
109108[tool .mypy ]
110- python_version = " 3.9 "
109+ python_version = " 3.10 "
111110files = [" ariadne_codegen" , " tests" ]
112111check_untyped_defs = true
113112# disallow_untyped_defs = true
@@ -144,7 +143,7 @@ fail_under = 90
144143
145144[tool .ruff ]
146145line-length = 88
147- target-version = " py39 "
146+ target-version = " py310 "
148147
149148[tool .ruff .format ]
150149docstring-code-format = true
0 commit comments