-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit numpy version to <2 in tests to pass ci-piplines for 1.16.2 (#6257
) ### Description Limit numpy version to <2 in tests to pass ci-piplines for 1.16.2. The change in requirements-min.txt is also needed to get the CI's to pass. There's an issue with the python-pillow/Pillow#8187. We did try downgrading the version of pillow but that then failed to build for some reason. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? --> <!-- - If it fixes an open issue, please link to the issue here. --> Signed-off-by: Andreas Fehlner <fehlner@arcor.de>
- Loading branch information
Showing
6 changed files
with
10 additions
and
10 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
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,7 +1,7 @@ | ||
# Minimum package versions that ONNX supports | ||
protobuf==3.20.2; python_version<"3.12" | ||
protobuf==4.25.1; python_version>="3.12" | ||
numpy==1.20.3; python_version<"3.10" | ||
numpy==1.21.0; python_version<"3.10" | ||
numpy==1.23.2; python_version=="3.10" | ||
numpy==1.23.2; python_version=="3.11" | ||
numpy==1.26.0; python_version>="3.12" |
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,2 +1,2 @@ | ||
google-re2 | ||
Pillow | ||
pillow |