Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 9f5f518

Browse files
authored
fix asf updates by avoiding pip 25.3 (#13305)
1 parent 612f68a commit 9f5f518

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/asf-updates.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python-version-file: '.python-version'
2727

2828
- name: Install release helper dependencies
29-
run: pip install --upgrade setuptools setuptools_scm uv
29+
run: python3 -m pip install --upgrade setuptools setuptools_scm uv
3030

3131
- name: Cache LocalStack community dependencies (venv)
3232
uses: actions/cache@v4
@@ -93,8 +93,8 @@ jobs:
9393
bin/release-helper.sh set-dep-ver awscli "==$AWSCLI_VERSION"
9494
9595
# upgrade the requirements files only for the botocore package
96-
# FIXME remove pin on pip-tools when https://github.com/jazzband/pip-tools/issues/2215 us resolved
97-
pip install "pip-tools<7.5.0"
96+
# TODO: Avoid pip 25.3 for now due to https://github.com/jazzband/pip-tools/issues/2252
97+
python3 -m pip install --upgrade "pip!=25.3" pip-tools
9898
pip-compile --strip-extras --upgrade-package "botocore==$BOTOCORE_VERSION" --upgrade-package "boto3==$BOTOCORE_VERSION" --extra base-runtime -o requirements-base-runtime.txt pyproject.toml
9999
pip-compile --strip-extras --upgrade-package "botocore==$BOTOCORE_VERSION" --upgrade-package "boto3==$BOTOCORE_VERSION" --upgrade-package "awscli==$AWSCLI_VERSION" --extra runtime -o requirements-runtime.txt pyproject.toml
100100
pip-compile --strip-extras --upgrade-package "botocore==$BOTOCORE_VERSION" --upgrade-package "boto3==$BOTOCORE_VERSION" --upgrade-package "awscli==$AWSCLI_VERSION" --extra test -o requirements-test.txt pyproject.toml

0 commit comments

Comments
 (0)