Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: pin Pip to 22.0.4 to avoid issues with --no-build-isolation #16172

Merged
merged 1 commit into from
May 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ stages:
git submodule update --init
displayName: 'Fetch submodules'
- script: |
python -m pip install --upgrade pip "setuptools==59.6.0" wheel
python -m pip install --upgrade "pip==22.0.4" "setuptools==59.6.0" wheel
displayName: 'Install tools'
- powershell: |
$pyversion = python -c "import sys; print(sys.version.split()[0])"
Expand Down
2 changes: 1 addition & 1 deletion ci/azure-travis-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ steps:
displayName: 'Add ccache to path'
- script: >-
pip install --upgrade ${{parameters.numpy_spec}} &&
pip install --upgrade pip setuptools==59.6.0 wheel &&
pip install --upgrade pip==22.0.4 setuptools==59.6.0 wheel &&
pip install ${{parameters.other_spec}}
cython
gmpy2
Expand Down