3535 - name : Install CI/CD tools
3636 run : |
3737 python -m pip install --upgrade pip
38- python -m pip install setuptools continuous-delivery-scripts
38+ python -m pip install " setuptools<81" continuous-delivery-scripts
3939 python -m pip list
4040 - name : Assert news
4141 run : cd-assert-news -b ${CI_ACTION_REF_NAME}
@@ -105,7 +105,7 @@ jobs:
105105 # for the process to go through properly.
106106 # FIXME upgrade when https://github.com/pypa/pipenv/issues/4430 is actually fixed
107107 run : |
108- python -m pip install --upgrade pip wheel setuptools
108+ python -m pip install --upgrade pip wheel " setuptools<81"
109109 python -m pip install pipenv==${{ env.pipenv_version }}
110110 echo "Locking dependencies"
111111 python -m pipenv lock
@@ -123,7 +123,7 @@ jobs:
123123 # location for development dependencies.
124124 run : |
125125 python -m pip install -r dev-requirements.txt
126- python -m pip install setuptools
126+ python -m pip install " setuptools<81"
127127 python -m pip list
128128 - name : Generate SPDX documents
129129 run : |
@@ -147,7 +147,7 @@ jobs:
147147 - name : Install tools
148148 run : |
149149 python -m pip install --upgrade pip
150- python -m pip install setuptools detect-secrets[gibberish]==1.5.0
150+ python -m pip install " setuptools<81" detect-secrets[gibberish]==1.5.0
151151 python -m pip list
152152 - uses : actions/checkout@v6
153153 with :
@@ -203,7 +203,7 @@ jobs:
203203 # This code forces the system to install latest tools as the ones present on the CI system may be too old
204204 # for the process to go through properly.
205205 run : |
206- python -m pip install --upgrade pip wheel setuptools
206+ python -m pip install --upgrade pip wheel " setuptools<81"
207207 - if : ${{ startsWith(matrix.os, 'windows') }}
208208 run : |
209209 python -m pip install --upgrade pipenv
@@ -247,7 +247,7 @@ jobs:
247247 # is superfluous and eliminating pipenv in CI reduces overhead and reduce complexity, while retaining a single
248248 # location for development dependencies.
249249 run : |
250- pip install --upgrade flake8 setuptools
250+ pip install --upgrade flake8 " setuptools<81"
251251 pip install -r dev-requirements.txt
252252 pip list
253253 - if : ${{ startsWith(matrix.python-version, '3.10') }}
0 commit comments