Skip to content

Commit c2b4c1f

Browse files
authored
Pin all the downstream repos (#13244)
* Pin all the downstream repos A bump script to follow * attempt to fix matrix
1 parent 2c16dbc commit c2b4c1f

13 files changed

+67
-39
lines changed

.github/downstream.d/aws-encryption-sdk.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/awslabs/aws-encryption-sdk-python
65
cd aws-encryption-sdk-python
7-
git rev-parse HEAD
86
uv pip install -e .
97
uv pip install -r test/upstream-requirements-py311.txt
108
;;

.github/downstream.d/certbot-josepy.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/certbot/josepy
65
cd josepy
7-
git rev-parse HEAD
86
curl -sSL https://install.python-poetry.org | python3 -
97
"${HOME}/.local/bin/poetry" self add poetry-plugin-export
108
"${HOME}/.local/bin/poetry" export -f constraints.txt --dev --without-hashes -o constraints.txt

.github/downstream.d/certbot.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/certbot/certbot
65
cd certbot
7-
git rev-parse HEAD
86
uv pip install pip
97
tools/pip_install.py -e ./acme[test]
108
tools/pip_install.py -e ./certbot[test]

.github/downstream.d/dynamodb-encryption-sdk.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/awslabs/aws-dynamodb-encryption-python
65
cd aws-dynamodb-encryption-python
7-
git rev-parse HEAD
86
uv pip install -e .
97
uv pip install -r test/upstream-requirements-py311.txt
108
;;

.github/downstream.d/mitmproxy.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/mitmproxy/mitmproxy
65
cd mitmproxy
7-
git rev-parse HEAD
86
uv pip install -r <(uv export --locked) -e .
97
;;
108
run)

.github/downstream.d/paramiko.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/paramiko/paramiko
65
cd paramiko
7-
git rev-parse HEAD
86
uv --version
97
uv sync --inexact --active
108
;;

.github/downstream.d/pyopenssl-release.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33
case "${1}" in
44
install)
5-
VERSION=$(curl https://pypi.org/pypi/pyOpenSSL/json | jq -r .info.version)
6-
git clone https://github.com/pyca/pyopenssl
75
cd pyopenssl
8-
git checkout "$VERSION"
96
uv pip install -e ".[test]"
107
;;
118
run)

.github/downstream.d/pyopenssl.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/pyca/pyopenssl
65
cd pyopenssl
7-
git rev-parse HEAD
86
uv pip install -e ".[test]"
97
;;
108
run)

.github/downstream.d/scapy.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
case "${1}" in
44
install)
5-
git clone --depth=1 https://github.com/secdev/scapy
65
cd scapy
7-
git rev-parse HEAD
86
uv pip install tox
97
;;
108
run)

.github/downstream.d/sigstore.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ case "${1}" in
44
install)
55
# NOTE: placed in /tmp to avoid inscrutable pytest failures
66
# with 'unrecognized arguments: --benchmark-disable'
7-
git clone --depth=1 https://github.com/sigstore/sigstore-python /tmp/sigstore-python
7+
cp -r sigstore-python /tmp/sigstore-python
88
cd /tmp/sigstore-python
9-
git rev-parse HEAD
109
uv pip install pip
1110
pip install -e ".[test]"
1211
;;

0 commit comments

Comments
 (0)