-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add hack/update-requirements-build.sh (quay#2384)
- Loading branch information
Oleg Bulatov
authored
Oct 10, 2023
1 parent
0e51b04
commit cd44497
Showing
7 changed files
with
133 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh -eux | ||
curl -fsSLO https://raw.githubusercontent.com/containerbuildsystem/cachito/master/bin/pip_find_builddeps.py | ||
python3 pip_find_builddeps.py requirements.txt -o requirements-build.in | ||
sed -i.bak '/^Cython>=3.0.2/d' requirements-build.in | ||
rm requirements-build.in.bak | ||
pip-compile -q requirements-build.in -o requirements-build.txt --allow-unsafe | ||
sed -i.bak '1i\ | ||
# This file is autogenerated by hack/update-requirements-build.sh. | ||
/^cython==/a\ | ||
cython==3.0.2 | ||
' requirements-build.txt | ||
rm requirements-build.txt.bak |
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,2 +1,83 @@ | ||
Cython==0.29.36 | ||
Cython==3.0.2 | ||
# This file is autogenerated by hack/update-requirements-build.sh. | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.9 | ||
# by the following command: | ||
# | ||
# pip-compile --allow-unsafe --output-file=requirements-build.txt requirements-build.in | ||
# | ||
cffi==1.16.0 | ||
# via -r requirements-build.in | ||
cython==0.29.36 | ||
cython==3.0.2 | ||
# via -r requirements-build.in | ||
editables==0.5 | ||
# via | ||
# -r requirements-build.in | ||
# hatchling | ||
flit-core==3.9.0 | ||
# via -r requirements-build.in | ||
greenlet==3.0.0 | ||
# via -r requirements-build.in | ||
hatch-vcs==0.3.0 | ||
# via -r requirements-build.in | ||
hatchling==1.18.0 | ||
# via | ||
# -r requirements-build.in | ||
# hatch-vcs | ||
packaging==23.2 | ||
# via | ||
# -r requirements-build.in | ||
# hatchling | ||
# setuptools-scm | ||
pathspec==0.11.2 | ||
# via | ||
# -r requirements-build.in | ||
# hatchling | ||
pbr==5.11.1 | ||
# via -r requirements-build.in | ||
pluggy==1.3.0 | ||
# via | ||
# -r requirements-build.in | ||
# hatchling | ||
pycparser==2.21 | ||
# via | ||
# -r requirements-build.in | ||
# cffi | ||
pyyaml==6.0.1 | ||
# via -r requirements-build.in | ||
semantic-version==2.10.0 | ||
# via | ||
# -r requirements-build.in | ||
# setuptools-rust | ||
setuptools-rust==1.7.0 | ||
# via -r requirements-build.in | ||
setuptools-scm[toml]==8.0.4 | ||
# via | ||
# -r requirements-build.in | ||
# hatch-vcs | ||
six==1.16.0 | ||
# via -r requirements-build.in | ||
tomli==2.0.1 | ||
# via | ||
# -r requirements-build.in | ||
# hatchling | ||
# setuptools-rust | ||
# setuptools-scm | ||
trove-classifiers==2023.9.19 | ||
# via | ||
# -r requirements-build.in | ||
# hatchling | ||
typing-extensions==4.8.0 | ||
# via | ||
# -r requirements-build.in | ||
# setuptools-rust | ||
# setuptools-scm | ||
wheel==0.41.2 | ||
# via -r requirements-build.in | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
setuptools==68.2.2 | ||
# via | ||
# -r requirements-build.in | ||
# setuptools-rust | ||
# setuptools-scm |
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