setup.py -> numpy>=2,<3 and python 3.10 through 3.12

This commit is contained in:
jdegenstein
2024-12-01 13:54:01 -06:00
committed by GitHub
parent 0e6b47e21e
commit 0569294a2b

View File

@@ -26,7 +26,7 @@ setup(
"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 @@ setup(
"requests>=2,<3",
"spyder>=5,<6",
"pyqtgraph",
"numpy >= 1.24.1, <2",
"numpy >= 2, <3",
],
)