From 185d97478e5f1da20d42b119e8144fae4aaa83a6 Mon Sep 17 00:00:00 2001 From: Daniel Bast <2790401+dbast@users.noreply.github.com> Date: Mon, 4 Sep 2023 11:03:36 +0200 Subject: [PATCH] Increase min Python version to 3.10 The codebase makes usage of typing features present only in Python >= 3.10. Updating the setup.py to reflect this. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb6eff2c9..2b58f46ec 100644 --- a/setup.py +++ b/setup.py @@ -22,5 +22,5 @@ ], package_dir={"": "src"}, packages=setuptools.find_packages(where="src"), - python_requires=">=3.6", + python_requires=">=3.10", )