Skip to content

Commit

Permalink
Bump pip-tools version (#1215)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymilne authored Feb 7, 2022
1 parent 40c89cc commit 07a14fe
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
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~=21.2" "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 RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Added Plotly dataset documentation (`03_tutorial/06_visualise_pipeline.md`).
* Added the upper limit `pandas<1.4` to maintain compatibility with `xlrd~=1.0`.
* Bumped the `Pillow` minimum version requirement to 9.0 (Python 3.7+ only) following [CVE-2022-22817](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22817).
* Added tutorial documentation for experiment tracking in Kedro docs. (`03_tutorial/07_set_up_experiment_tracking.md`).
* Upgraded `pip-tools`, which is used by `kedro build-reqs`, to 6.5 (Python 3.7+ only). This `pip-tools` version is compatible with `pip>=21.2`, including the most recent releases of `pip`. Python 3.6 users should continue to use `pip-tools` 6.4 and `pip<22`.

## Minor breaking changes to the API

Expand Down
2 changes: 1 addition & 1 deletion features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def _setup_minimal_env(context):
"pip",
"install",
"-U",
"pip~=21.2",
"pip>=21.2",
"setuptools>=38.0",
"wheel",
],
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ fsspec>=2021.04, <2022.01 # Upper bound set arbitrarily, to be reassessed in ea
gitpython~=3.0
jmespath>=0.9.5, <1.0
jupyter_client>=5.1, <7.0
pip-tools~=6.4
pip-tools~=6.4.0; python_version == '3.6'
pip-tools~=6.5; python_version > '3.6'
pluggy~=0.13.0
python-json-logger~=2.0
PyYAML>=4.2, <6.0
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~=21.2
pip>=21.2
setuptools>=38.0
twine~=3.0

0 comments on commit 07a14fe

Please sign in to comment.