File tree Expand file tree Collapse file tree 12 files changed +25
-19
lines changed Expand file tree Collapse file tree 12 files changed +25
-19
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ case "${1}" in
5
5
git clone --depth=1 https://github.com/awslabs/aws-encryption-sdk-python
6
6
cd aws-encryption-sdk-python
7
7
git rev-parse HEAD
8
- pip install -e .
9
- pip install -r test/upstream-requirements-py311.txt
8
+ uv pip install -e .
9
+ uv pip install -r test/upstream-requirements-py311.txt
10
10
;;
11
11
run)
12
12
cd aws-encryption-sdk-python
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ case "${1}" in
8
8
curl -sSL https://install.python-poetry.org | python3 -
9
9
" ${HOME} /.local/bin/poetry" self add poetry-plugin-export
10
10
" ${HOME} /.local/bin/poetry" export -f constraints.txt --dev --without-hashes -o constraints.txt
11
- pip install -e . pytest -c constraints.txt
11
+ uv pip install -e . pytest -c constraints.txt
12
12
;;
13
13
run)
14
14
cd josepy
Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ case "${1}" in
5
5
git clone --depth=1 https://github.com/certbot/certbot
6
6
cd certbot
7
7
git rev-parse HEAD
8
+ uv pip install pip
8
9
tools/pip_install.py -e ./acme[test]
9
10
tools/pip_install.py -e ./certbot[test]
10
- pip install -U pyopenssl
11
+ uv pip install -U pyopenssl
11
12
;;
12
13
run)
13
14
cd certbot
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ case "${1}" in
5
5
git clone --depth=1 https://github.com/awslabs/aws-dynamodb-encryption-python
6
6
cd aws-dynamodb-encryption-python
7
7
git rev-parse HEAD
8
- pip install -e .
9
- pip install -r test/upstream-requirements-py311.txt
8
+ uv pip install -e .
9
+ uv pip install -r test/upstream-requirements-py311.txt
10
10
;;
11
11
run)
12
12
cd aws-dynamodb-encryption-python
Original file line number Diff line number Diff line change 2
2
3
3
case " ${1} " in
4
4
install)
5
- pip install uv
6
5
git clone --depth=1 https://github.com/mitmproxy/mitmproxy
7
6
cd mitmproxy
8
7
git rev-parse HEAD
9
- uv pip install --system --requirements <( uv export --locked) -e .
8
+ uv pip install -r <( uv export --locked) -e .
10
9
;;
11
10
run)
12
11
cd mitmproxy
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ case "${1}" in
5
5
git clone --depth=1 https://github.com/paramiko/paramiko
6
6
cd paramiko
7
7
git rev-parse HEAD
8
- pip install -e .
8
+ uv pip install pip
9
+ uv pip install -e .
9
10
pip install -r dev-requirements.txt
10
11
;;
11
12
run)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ case "${1}" in
6
6
git clone https://github.com/pyca/pyopenssl
7
7
cd pyopenssl
8
8
git checkout " $VERSION "
9
- pip install -e " .[test]"
9
+ uv pip install -e " .[test]"
10
10
;;
11
11
run)
12
12
cd pyopenssl
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ case "${1}" in
5
5
git clone --depth=1 https://github.com/pyca/pyopenssl
6
6
cd pyopenssl
7
7
git rev-parse HEAD
8
- pip install -e " .[test]"
8
+ uv pip install -e " .[test]"
9
9
;;
10
10
run)
11
11
cd pyopenssl
Original file line number Diff line number Diff line change @@ -5,12 +5,11 @@ case "${1}" in
5
5
git clone --depth=1 https://github.com/secdev/scapy
6
6
cd scapy
7
7
git rev-parse HEAD
8
- pip install tox
8
+ uv pip install tox
9
9
;;
10
10
run)
11
11
cd scapy
12
- # this tox case uses sitepackages=true to use local cryptography
13
- tox -qe cryptography
12
+ TOX_OVERRIDE=" testenv:cryptography.deps=file://$( realpath ..) " tox -e cryptography
14
13
;;
15
14
* )
16
15
exit 1
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ case "${1}" in
7
7
git clone --depth=1 https://github.com/sigstore/sigstore-python /tmp/sigstore-python
8
8
cd /tmp/sigstore-python
9
9
git rev-parse HEAD
10
+ uv pip install pip
10
11
pip install -e " .[test]"
11
12
;;
12
13
run)
You can’t perform that action at this time.
0 commit comments