Skip to content

Commit

Permalink
CI: use a pip release on Debian in Cirrus
Browse files Browse the repository at this point in the history
Signed-off-by: Filipe Laíns <lains@riseup.net>
  • Loading branch information
FFY00 committed Feb 2, 2023
1 parent df6f47d commit bb835a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ debian-11_task:
cpu: 1
fix-pip_script:
# see https://github.com/pypa/pip/pull/11623
- python3 -m pip install --upgrade "pip @ git+https://github.com/pypa/pip.git@a057c9bc99ad7eab2e3b1539e79eee7d9a923f4f"
- python3 -m pip install --upgrade pip>=23.0

This comment has been minimized.

Copy link
@dnicolodi

dnicolodi Feb 2, 2023

Member

Nope. pip 23 is known to be broken on Debian. I tried my best, but failed: pypa/pip#11740

Also, for some reason that I don't fully understand, it is not possible to upgrade the distribution provided pip on Debian unstable. I haven't had time yet to look into it.

Ah, and this would need some quotes, otherwise the shell is not very happy.

<< : *test

debian-unstable_task:
Expand All @@ -41,7 +41,7 @@ debian-unstable_task:
cpu: 1
fix-pip_script:
# see https://github.com/pypa/pip/pull/11623
- python3 -m pip install --upgrade "pip @ git+https://github.com/pypa/pip.git@a057c9bc99ad7eab2e3b1539e79eee7d9a923f4f"
- python3 -m pip install --upgrade pip>=23.0
<< : *test

fedora-37_task:
Expand Down

0 comments on commit bb835a3

Please sign in to comment.