generate-setup-file = true
[tool.poetry.dependencies]
-python = "^3.8"
+python = "^3.9"
aiohttp = "*"
jinja2 = "*"
pyyaml = "*"
[tool.ruff]
line-length = 120
-target-version = "py38"
+target-version = "py39"
exclude = ["setup.py"]
[tool.ruff.lint]
line-ending = "auto"
[tool.mypy]
-python_version = "3.8"
+python_version = "3.9"
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = false
'install_requires': install_requires,
'extras_require': extras_require,
'entry_points': entry_points,
- 'python_requires': '>=3.8,<4.0',
+ 'python_requires': '>=3.9,<4.0',
}
from build_c_extensions import *
build(setup_kwargs)