From: Aleš Mrázek Date: Wed, 5 Aug 2026 22:53:32 +0000 (+0200) Subject: pyproject.toml: bump python3.9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a173e341b55ff63283fadce7dafbc087e1e440b;p=thirdparty%2Fknot-resolver.git pyproject.toml: bump python3.9 setup.py update --- diff --git a/pyproject.toml b/pyproject.toml index 3aa0c62e1..58960d165 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ script = "build_c_extensions.py" generate-setup-file = true [tool.poetry.dependencies] -python = "^3.8" +python = "^3.9" aiohttp = "*" jinja2 = "*" pyyaml = "*" @@ -97,7 +97,7 @@ clean = { cmd = "scripts/poe-tasks/clean", help="Cleanup build directories and f [tool.ruff] line-length = 120 -target-version = "py38" +target-version = "py39" exclude = ["setup.py"] [tool.ruff.lint] @@ -223,7 +223,7 @@ skip-magic-trailing-comma = false 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 diff --git a/setup.py b/setup.py index e85845538..7dcb944cd 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ setup_kwargs = { '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)