From 814dc4ce37ef21c77df39d714a390eb1a2f15144 Mon Sep 17 00:00:00 2001 From: Doug Turnbull Date: Sun, 27 Oct 2024 09:09:28 -0400 Subject: [PATCH] Python 3.10 is minimum python for numpy 2.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8f6c5ea..d6fe3cb 100644 --- a/setup.py +++ b/setup.py @@ -119,7 +119,7 @@ # 'Programming Language' classifiers above, 'pip install' will check this # and refuse to install the project if the version does not match. Sele # https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires - python_requires=">=3.9, <4", + python_requires=">=3.10, <4", # This field lists other packages that your project depends on to run. # Any package you put here will be installed by pip when your project is # installed, so they must be valid existing projects.