Skip to content

Commit 1e109aa

Browse files
committed
[workflows/ci] Avoid installing wheel and setuptools with pip
Works around dependent wheel installation failure with Py 3.4 from 2025-10
1 parent efb4011 commit 1e109aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ jobs:
365365
python -m ensurepip || python -m pip --version || { \
366366
get_pip="${{ contains(needs.select.outputs.own-pip-versions, matrix.python-version) && format('{0}/', matrix.python-version) || '' }}"; \
367367
curl -L -O "https://bootstrap.pypa.io/pip/${get_pip}get-pip.py"; \
368-
python get-pip.py; }
368+
python get-pip.py --no-setuptools --no-wheel; }
369369
- name: Set up Python 2.6 pip
370370
if: ${{ matrix.python-version == '2.6' }}
371371
shell: bash

0 commit comments

Comments
 (0)