Skip to content

Commit

Permalink
Bump setuptools to 65.5.1 (#2093)
Browse files Browse the repository at this point in the history
* Bump setuptools to 65.5.1

Signed-off-by: Merel Theisen <merel.theisen@quantumblack.com>
  • Loading branch information
merelcht authored Dec 5, 2022
1 parent dd74c5c commit a2c7e28
Show file tree
Hide file tree
Showing 6 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 @@ -8,7 +8,7 @@ clean:
pre-commit clean || true

install-pip-setuptools:
pip install -U "pip>=21.2" "setuptools>=38.0" wheel
pip install -U "pip>=21.2" "setuptools>=65.5.1" wheel

lint:
pre-commit run -a --hook-stage manual $(hook)
Expand Down
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
* Refactored `ShelveStore` to it's own module to ensure multiprocessing works with it.
* `kedro.extras.datasets.pandas.SQLQueryDataSet` now takes optional argument `execution_options`.
* Removed `attrs` upper bound to support newer versions of Airflow.
* Bumped the lower bound for the `setuptools` dependency to <=61.5.1.

## Minor breaking changes to the API

Expand Down
2 changes: 1 addition & 1 deletion dependency/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ pluggy~=1.0.0
PyYAML>=4.2, <7.0
rich~=12.0
rope~=1.5.1 # subject to LGPLv3 license
setuptools>=38.0
setuptools>=65.5.1
toml~=0.10
toposort~=1.7 # Needs to be at least 1.5 to be able to raise CircularDependencyError
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):
"install",
"-U",
"pip>=21.2",
"setuptools>=38.0",
"setuptools>=65.5.1",
"wheel",
],
env=context.env,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# PEP-518 https://peps.python.org/pep-0518/
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=38.0", "wheel"] # PEP 518 specifications.
requires = ["setuptools>=65.5.1", "wheel"] # PEP 518 specifications.

[tool.black]
exclude = "/templates/|^features/steps/test_starter"
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
setuptools>=38.0
setuptools>=65.5.1
twine~=3.0

0 comments on commit a2c7e28

Please sign in to comment.