-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pip constraints file in ngen Dockerfile.
Adding constraints file to ngen (and related) image build to control numpy and pip versions as needed for compatibility, using this instead of doing directly within the Dockerfile itself in pip commands.
- Loading branch information
1 parent
3018f02
commit b8dcc03
Showing
2 changed files
with
10 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Constrain pip | ||
pip>=23.0,<23.1 | ||
|
||
### Constrain numpy to < 2.0.0 due to current ngen compatibility issue | ||
numpy~=1.0 |