From 012fa73044fd439d37304d2c67e539c8fc2c24e0 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Wed, 7 Jun 2023 14:49:19 +0100 Subject: [PATCH] Update setuptools from 67.7.2 to 67.8.0 https://setuptools.pypa.io/en/stable/history.html#v67-8-0 https://github.com/pypa/setuptools/compare/v67.7.2...v67.8.0 This is the classic buildpack equivalent of: https://github.com/heroku/buildpacks-python/pull/43 GUS-W-13551852. --- CHANGELOG.md | 1 + bin/steps/python | 2 +- spec/spec_helper.rb | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f66c4f223..ab1530c75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Python 3.7.17, 3.8.17, 3.9.17, 3.10.12 and 3.11.4 are now available ([#1454](https://github.com/heroku/heroku-buildpack-python/pull/1454)). - The default Python version for new apps is now 3.11.4 (previously 3.11.3) ([#1454](https://github.com/heroku/heroku-buildpack-python/pull/1454)). +- Updated setuptools from 67.7.2 to 67.8.0. ([#1456](https://github.com/heroku/heroku-buildpack-python/pull/1456)) - Removed support for Heroku-18. ([#1449](https://github.com/heroku/heroku-buildpack-python/pull/1449)) ## v232 (2023-04-27) diff --git a/bin/steps/python b/bin/steps/python index 6c2e14ffa..0a74594f1 100755 --- a/bin/steps/python +++ b/bin/steps/python @@ -145,7 +145,7 @@ else fi PIP_VERSION='23.1.2' -SETUPTOOLS_VERSION='67.7.2' +SETUPTOOLS_VERSION='67.8.0' WHEEL_VERSION='0.40.0' puts-step "Installing pip ${PIP_VERSION}, setuptools ${SETUPTOOLS_VERSION} and wheel ${WHEEL_VERSION}" diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2f7c38726..d35707354 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -14,7 +14,7 @@ DEFAULT_PYTHON_VERSION = LATEST_PYTHON_3_11 PIP_VERSION = '23.1.2' -SETUPTOOLS_VERSION = '67.7.2' +SETUPTOOLS_VERSION = '67.8.0' WHEEL_VERSION = '0.40.0' # Work around the return value for `default_buildpack` changing after deploy: