Skip to content

Commit

Permalink
Allow numpy 1.26 in project.toml and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
margrietpalm committed Feb 15, 2024
1 parent 7580f16 commit 379db49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ requires = [
"numpy==1.21.3; python_version=='3.10'",
"numpy==1.24.2; python_version=='3.11'",
# do not pin numpy on future versions of python to avoid incompatible numpy and python versions
"numpy; python_version>='3.11'",
"numpy==1.26.*; python_version=='3.12'",
"ninja; platform_system!='Windows'"
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_version():


install_requires = [
"numpy>=1.15,<1.25.0",
"numpy>=1.15",
"threedi-schema==0.219.*",
"shapely>=2",
"pyproj>=3",
Expand Down

0 comments on commit 379db49

Please sign in to comment.