Skip to content

Commit 62c6c19

Browse files
authored
Merge pull request #52 from apache/numpy2_fixes
Found a couple more places specifying numpy<2
2 parents 51db712 + daf41eb commit 62c6c19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,6 @@ def build_extension(self, ext):
104104
# may need to add all source paths for sdist packages w/o MANIFEST.in
105105
ext_modules=[CMakeExtension('datasketches','.')],
106106
cmdclass={'build_ext': CMakeBuild},
107-
install_requires=['numpy < 2.0'],
107+
install_requires=['numpy'],
108108
zip_safe=False
109109
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ isolated_build = true
2121

2222
[testenv]
2323
deps = pytest
24-
numpy < 2.0
24+
numpy
2525
changedir = tests
2626
commands = pytest

0 commit comments

Comments
 (0)