Skip to content

Commit 687ca45

Browse files
committed
ci: pin pip version
Pip 25.1 breaks the creation of the requirements.txt. Pin to a lower version. Closes #169 Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
1 parent 4189243 commit 687ca45

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/update.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
max_attempts: 3
3030
command: |
3131
# pip-tools provides pip-compile used by update.sh
32-
pip3 install --upgrade pip-tools pip
32+
# TODO: Pinning pip due to https://github.com/jazzband/pip-tools/issues/2176, remove when fixed
33+
pip3 install --upgrade pip-tools pip\<25.1
3334
export PATH=$HOME/.local/bin:$PATH
3435
echo "Updating Debian bullseye images"
3536
./Debian/update.sh -d bullseye
@@ -45,7 +46,8 @@ jobs:
4546
max_attempts: 3
4647
command: |
4748
# pip-tools provides pip-compile used by update.sh
48-
pip3 install --upgrade pip-tools pip
49+
# TODO: Pinning pip due to https://github.com/jazzband/pip-tools/issues/2176, remove when fixed
50+
pip3 install --upgrade pip-tools pip\<25.1
4951
export PATH=$HOME/.local/bin:$PATH
5052
echo "Updating Debian bookworm images"
5153
./Debian/update.sh -d bookworm

0 commit comments

Comments
 (0)