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

Upper bound pip in CI #1189

Merged
merged 5 commits into from
Feb 1, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ jobs:
python_version:
type: string
executor: win/default
environment:
PIP_DISABLE_PIP_VERSION_CHECK: 1
steps:
- checkout
- win_setup_conda:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ clean:
pre-commit clean || true

install-pip-setuptools:
python -m pip install -U "pip>=20.0" "setuptools>=38.0" wheel
python -m pip install -U "pip~=21.2" "setuptools>=38.0" wheel

lint:
pre-commit run -a --hook-stage manual $(hook)
Expand Down
2 changes: 1 addition & 1 deletion features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def _setup_minimal_env(context):
"pip",
"install",
"-U",
"pip>=20.0",
"pip~=21.2",
"setuptools>=38.0",
"wheel",
],
Expand Down
2 changes: 1 addition & 1 deletion tools/circleci/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pip>=20.0
pip~=21.2
setuptools>=38.0
twine~=3.0