Skip to content

Commit 2aedaeb

Browse files
committed
removing numpy 2.0 upperbound
1 parent f9c2750 commit 2aedaeb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pyproject.toml
22
[build-system]
33
# Minimum requirements for the build system to execute.
4-
requires = ['setuptools>=45.0,<72.0', 'wheel', 'cython>=3.0.0', 'numpy>=1.25,<2.0.0',
4+
requires = ['setuptools>=45.0,<72.0', 'wheel', 'cython>=3.0.0', 'numpy>=1.25',
55
# Build against an old version (3.1.5) of mpi4py for forward compatibility
66
'mpi4py==3.1.5']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def get_mpi_flags():
127127
author_email="[email protected]",
128128
python_requires=">=3.9.0",
129129
install_requires=[
130-
"numpy<2.0.0",
130+
"numpy",
131131
"mpi4py>=3.1.5,<4.0.0",
132132
"scipy>=1.2.1",
133133
"pynastran>=1.4.0",

0 commit comments

Comments
 (0)