Skip to content

Commit 7bd1825

Browse files
committed
allow numpy>2
1 parent 4924e6b commit 7bd1825

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ def main():
2222
build_java = "ON" if get_build_env_var_by_name("java") else "OFF"
2323
build_rolling = get_build_env_var_by_name("rolling")
2424

25-
# NOTE: since 2.3.0 numpy upgraded from manylinux2014 to manylinux_2_28
26-
# see https://numpy.org/doc/stable/release/2.3.0-notes.html#numpy-2-3-0-release-notes
2725
install_requires = [
2826
'numpy<2.0; python_version<"3.9"',
29-
'numpy(>=2, <2.3.0); python_version>="3.9"',
27+
'numpy>=2; python_version>="3.9"',
3028
]
3129

3230
python_version = cmaker.CMaker.get_python_version()

0 commit comments

Comments
 (0)