From 37abd0b24cd74471979d39b106effbe51c68d66b Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Sun, 14 Dec 2025 18:05:53 +0100 Subject: [PATCH] Python 3.14.1 not supported Signed-off-by: Adam J. Stewart --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f7a7e38d41e..6181007924e 100644 --- a/setup.py +++ b/setup.py @@ -575,7 +575,7 @@ def run(self): "scipy": ["scipy"], }, ext_modules=extensions, - python_requires=">=3.10", + python_requires=">=3.10,!=3.14.1", cmdclass={ "build_ext": BuildExtension.with_options(no_python_abi_suffix=True), "clean": clean,