]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Bump python version in config files
authorJoerg Behrmann <behrmann@physik.fu-berlin.de>
Thu, 1 Sep 2022 14:40:41 +0000 (16:40 +0200)
committerJoerg Behrmann <behrmann@physik.fu-berlin.de>
Fri, 13 Jan 2023 08:54:16 +0000 (09:54 +0100)
pyproject.toml
setup.cfg
setup.py

index 831ee4ab9a084614a6b49cbd92839db110d1dc2b..5c4beea08628f471e3f81e54381c471f615aa499 100644 (file)
@@ -1,10 +1,10 @@
 [tool.isort]
 profile = "black"
 multi_line_output = 3
-py_version = "37"
+py_version = "39"
 
 [tool.pyright]
-pythonVersion = "3.7"
+pythonVersion = "3.9"
 
 [tool.pytest.ini_options]
 asyncio_mode = "auto"
index 7f6c9750695f99be04efba2cc632c766855e7e63..93e00d7ed433ba3b8f02d6e3dc75df203639dcfe 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ max-line-length = 119
 multi_line_output = 3
 include_trailing_comma = True
 [mypy]
-python_version = 3.7
+python_version = 3.9
 # belonging to --strict
 warn_unused_configs = True
 disallow_any_generics = True
index 61f632fbadb7d080d353636427e34f35bdf864c6..c06ceb71d596e537060e59dfd45c111ed550ffb8 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ setup(
     maintainer="mkosi contributors",
     maintainer_email="systemd-devel@lists.freedesktop.org",
     license="LGPLv2+",
-    python_requires=">=3.7",
+    python_requires=">=3.9",
     packages = find_packages(".", exclude=["tests"]),
     package_data = {"": ["*.sh", "*.hook", "*.conf", "*.install"]},
     include_package_data = True,