From 0569294a2b605ca23b407dacb61afc51104eee6f Mon Sep 17 00:00:00 2001 From: jdegenstein Date: Sun, 1 Dec 2024 13:54:01 -0600 Subject: [PATCH] setup.py -> numpy>=2,<3 and python 3.10 through 3.12 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 303039e..78dbfe2 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_version(rel_path): "CQ-editor = cq_editor.__main__:main", ] }, - python_requires=">=3.8,<3.12", + python_requires=">=3.10,<3.13", install_requires=[ "logbook>=1", "ipython", @@ -35,6 +35,6 @@ def get_version(rel_path): "requests>=2,<3", "spyder>=5,<6", "pyqtgraph", - "numpy >= 1.24.1, <2", + "numpy >= 2, <3", ], )