-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-pin dependencies based on constraints
This commit was sponsored by Quentin Pradet, nirik, Mark Harviston, and my other patrons. If you want to join them, you can support my work at https://glyph.im/patrons/.
- Loading branch information
Showing
3 changed files
with
88 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
#!/bin/sh | ||
#!/bin/sh -x | ||
|
||
pip-compile --strip-extras --quiet --upgrade --allow-unsafe --no-emit-index-url | ||
pip-compile --strip-extras --quiet --upgrade --allow-unsafe --no-emit-index-url --extra gui -o "$( | ||
pip-compile --strip-extras --quiet --upgrade --allow-unsafe --no-emit-index-url \ | ||
--extra dev \ | ||
-o dev-requirements.txt | ||
pip-compile --strip-extras --quiet --upgrade --allow-unsafe --no-emit-index-url \ | ||
--constraint ./dev-requirements.txt | ||
pip-compile --strip-extras --quiet --upgrade --allow-unsafe --no-emit-index-url \ | ||
--extra gui \ | ||
-o "$( | ||
python3 -c ' | ||
import platform | ||
print(platform.platform().split("-")[0]) | ||
' | ||
)-gui.requirements.txt" | ||
pip-compile --strip-extras --quiet --upgrade --allow-unsafe --no-emit-index-url --extra dev -o dev-requirements.txt | ||
)-gui.requirements.txt" \ | ||
--constraint ./dev-requirements.txt\ | ||
--constraint ./requirements.txt |
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