aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordirkf <fieldhouse@gmx.net>2025-10-17 06:55:27 +0100
committerdirkf <fieldhouse@gmx.net>2025-10-18 11:02:28 +0100
commit1e109aaee13a30e2a23f982410ffb3e4f73913df (patch)
tree8c85f8bac5a7c69ae0408f579035f5ad4d78debf
parentefb4011211f4cfb97894e8d30eace79e90e33c72 (diff)
[workflows/ci] Avoid installing wheel and setuptools with pipHEADmaster
Works around dependent wheel installation failure with Py 3.4 from 2025-10
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c7a8fff84..073c4458c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -365,7 +365,7 @@ jobs:
python -m ensurepip || python -m pip --version || { \
get_pip="${{ contains(needs.select.outputs.own-pip-versions, matrix.python-version) && format('{0}/', matrix.python-version) || '' }}"; \
curl -L -O "https://bootstrap.pypa.io/pip/${get_pip}get-pip.py"; \
- python get-pip.py; }
+ python get-pip.py --no-setuptools --no-wheel; }
- name: Set up Python 2.6 pip
if: ${{ matrix.python-version == '2.6' }}
shell: bash