Skip to content

Commit 8ffa597

Browse files
pin pip<26
1 parent efa33d2 commit 8ffa597

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install dependencies
2525
run: |
26-
python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools build setuptools setuptools_scm wheel
26+
python${{ matrix.python-version }} -m pip install --upgrade 'pip<26' pip-tools build setuptools setuptools_scm wheel
2727
python${{ matrix.python-version }} -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}.txt
2828
python${{ matrix.python-version }} -m pip install --no-deps .
2929
@@ -54,7 +54,7 @@ jobs:
5454

5555
- name: Install dependencies
5656
run: |
57-
python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools build setuptools setuptools_scm wheel
57+
python${{ matrix.python-version }} -m pip install --upgrade 'pip<26' pip-tools build setuptools setuptools_scm wheel
5858
python${{ matrix.python-version }} -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}.txt
5959
python${{ matrix.python-version }} -m pip install --no-deps .
6060

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Install Python dependencies
6363
run: |
64-
python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
64+
python${{ matrix.python-version }} -m pip install --upgrade 'pip<26' pip-tools
6565
python${{ matrix.python-version }} -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}.txt
6666
# Using non-editable install for testing building of MANIFEST files
6767
python${{ matrix.python-version }} -m pip install --no-deps .

.github/workflows/upgrade-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Upgrade Python dependencies
2828
shell: bash
2929
run: |
30-
python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
30+
python${{ matrix.python-version }} -m pip install --upgrade 'pip<26' pip-tools
3131
python${{ matrix.python-version }} -m piptools compile -q --upgrade --all-extras -o requirements/${{ matrix.os }}_py${{ matrix.python-version }}.txt
3232
- name: Detect changes
3333
id: changes

0 commit comments

Comments
 (0)