From c3250b00ee15b3bf635f7096fd7fa2b271d9260b Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Fri, 17 Oct 2025 12:35:19 +0200 Subject: [PATCH] Update python_requires to version 3.11 The recent v5.26.0 transitively requires Python >=3.11 via PyTensor. While "technically" correct, we shouldn't allow a Python version that is not installable. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1f37211e7a..80eaedb927 100755 --- a/setup.py +++ b/setup.py @@ -70,7 +70,7 @@ # Also see MANIFEST.in # package_data={'docs': ['*']}, classifiers=classifiers, - python_requires=">=3.10", + python_requires=">=3.11", install_requires=install_reqs, tests_require=test_reqs, )