From 03b2646c01117a25b7be7886a52bade4846636c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schm=C3=B6lder?= Date: Sun, 21 Apr 2024 13:27:48 +0200 Subject: [PATCH] Change minimum Python version to 3.10 Since we started using type hints, including the `|` operator to indicate a union of multiple possible arguments, Python 3.10 is now the new minimum required version. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 9eade0dc2..b918daebb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,7 @@ classifiers = [options] packages = find: -python_requires = >=3.9 +python_requires = >=3.10 install_requires = numpy>=1.21 scipy>=1.11