-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed so that version requirements are in agreement also in python (#…
…1088) ## Type of change - [x] Bug fix & code cleanup - [ ] New feature - [ ] Documentation update - [ ] Test update
- Loading branch information
Showing
4 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
numpy>=1.14.5,<2.1.3 | ||
numpy>=1.14.5,<2.1.3 # Must agree with python/pyproject.toml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Requirements building | ||
swig==4.3.0 | ||
cmake==3.31.4 | ||
wheel==0.45.1 | ||
swig==4.3.0 # Must agree with python/pyproject.toml | ||
cmake==3.31.4 # Must agree with python/pyproject.toml | ||
wheel==0.45.1 # Must agree with python/pyproject.toml | ||
|
||
# Note, the setuptools==75.3.0 is the highest supported version in the Windows wheel | ||
setuptools==75.3.0 | ||
setuptools==75.3.0 # Must agree with python/pyproject.toml |