Skip to content

Commit 3df933b

Browse files
committedJul 11, 2024
relax numpy constraints
1 parent 08abc1a commit 3df933b

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed
 

‎python/requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
cffi
2-
numpy>=1.15,==1.*
3-
numpy<1.22; python_version < '3.8'
2+
numpy>=1.15

‎python/setup.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,6 @@ def run(self):
8888
packages=find_packages(),
8989
include_package_data=True,
9090
license="MIT",
91-
install_requires=["cffi", "numpy>=1.15,==1.*"],
92-
extras_require={
93-
':python_version < "3.8"': [
94-
"numpy<1.22",
95-
],
96-
},
91+
install_requires=["cffi", "numpy>=1.15"],
9792
cmdclass={"build_py": BuildPyCommand},
9893
)

0 commit comments

Comments
 (0)