Skip to content

Commit

Permalink
Upper bound pip in CI (kedro-org#1189)
Browse files Browse the repository at this point in the history
Signed-off-by: Laurens Vijnck <laurens_vijnck@mckinsey.com>
  • Loading branch information
antonymilne authored and lvijnck committed Apr 7, 2022
1 parent d3e42ee commit 1509108
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
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

0 comments on commit 1509108

Please sign in to comment.