Skip to content

Commit 779d21b

Browse files
committed
Update wheel from 0.37.1 to 0.38.4
Updates the `wheel` packaging tool from 0.37.1 to 0.38.4 when using Python 3.7+. The version is unchanged for Python 3.6 since the newer wheel version has dropped support for it. See: https://wheel.readthedocs.io/en/stable/news.html pypa/wheel@0.37.1...0.38.4 GUS-W-12030292.
1 parent f98c1d8 commit 779d21b

File tree

6 files changed

+21
-19
lines changed

6 files changed

+21
-19
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
- Use Python 3.11 as the default Python version for new apps (previously Python 3.10) ([#1408](https://github.com/heroku/heroku-buildpack-python/pull/1408)).
6+
- Update wheel from 0.37.1 to 0.38.4 for Python 3.7+ ([#1409](https://github.com/heroku/heroku-buildpack-python/pull/1409)).
67

78
## v225 (2023-02-08)
89

bin/steps/python

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,14 @@ fi
183183

184184
PIP_VERSION='22.3.1'
185185
SETUPTOOLS_VERSION='63.4.3'
186-
WHEEL_VERSION='0.37.1'
186+
WHEEL_VERSION='0.38.4'
187187

188188
case "${PYTHON_VERSION}" in
189189
python-3.6.*)
190-
# Python 3.6 support was dropped in pip 22+ and setuptools 59.7.0+.
190+
# Python 3.6 support was dropped in pip 22+, setuptools 59.7.0+ and wheel 0.38.0+.
191191
PIP_VERSION='21.3.1'
192192
SETUPTOOLS_VERSION='59.6.0'
193+
WHEEL_VERSION='0.37.1'
193194
;;
194195
esac
195196

spec/hatchet/pip_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
remote: -----> No Python version was specified. Using the buildpack default: python-#{DEFAULT_PYTHON_VERSION}
2323
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
2424
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
25-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
25+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
2626
remote: -----> Installing SQLite3
2727
remote: -----> Installing requirements with pip
2828
remote: Collecting urllib3
@@ -38,7 +38,7 @@
3838
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
3939
remote: -----> No change in requirements detected, installing from cache
4040
remote: -----> Using cached install of python-#{DEFAULT_PYTHON_VERSION}
41-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
41+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
4242
remote: -----> Installing SQLite3
4343
remote: -----> Installing requirements with pip
4444
remote: -----> Discovering process types
@@ -61,7 +61,7 @@
6161
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
6262
remote: -----> Requirements file has been changed, clearing cached dependencies
6363
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
64-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
64+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
6565
remote: -----> Installing SQLite3
6666
remote: -----> Installing requirements with pip
6767
remote: Collecting urllib3

spec/hatchet/pipenv_spec.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
remote: -----> Python app detected
1010
remote: -----> Using Python version specified in Pipfile.lock
1111
remote: -----> Installing python-#{python_version}
12-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
12+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
1313
remote: -----> Installing dependencies with Pipenv 2023.2.4
1414
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
1515
remote: -----> Installing SQLite3
@@ -43,7 +43,7 @@
4343
remote: -----> No Python version was specified. Using the buildpack default: python-#{DEFAULT_PYTHON_VERSION}
4444
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
4545
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
46-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
46+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
4747
remote: -----> Installing dependencies with Pipenv 2023.2.4
4848
remote: Installing dependencies from Pipfile...
4949
remote: -----> Installing SQLite3
@@ -62,7 +62,7 @@
6262
remote: -----> No Python version was specified. Using the buildpack default: python-#{DEFAULT_PYTHON_VERSION}
6363
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
6464
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
65-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
65+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
6666
remote: -----> Installing dependencies with Pipenv 2023.2.4
6767
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
6868
remote: -----> Installing SQLite3
@@ -196,7 +196,7 @@
196196
remote: ! See: https://devcenter.heroku.com/articles/python-runtimes
197197
remote: !
198198
remote: -----> Installing python-#{LATEST_PYTHON_3_7}
199-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
199+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
200200
remote: -----> Installing dependencies with Pipenv 2023.2.4
201201
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
202202
remote: -----> Installing SQLite3
@@ -250,7 +250,7 @@
250250
remote: -----> Python app detected
251251
remote: -----> Using Python version specified in Pipfile.lock
252252
remote: -----> Installing python-#{LATEST_PYTHON_3_11}
253-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
253+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
254254
remote: -----> Installing dependencies with Pipenv 2023.2.4
255255
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
256256
remote: -----> Installing SQLite3
@@ -273,7 +273,7 @@
273273
remote: ! See: https://devcenter.heroku.com/articles/python-runtimes
274274
remote: !
275275
remote: -----> Installing python-3.10.7
276-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
276+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
277277
remote: -----> Installing dependencies with Pipenv 2023.2.4
278278
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
279279
remote: -----> Installing SQLite3
@@ -322,7 +322,7 @@
322322
remote: -----> Python app detected
323323
remote: -----> Using Python version specified in runtime.txt
324324
remote: -----> Installing python-#{LATEST_PYTHON_3_10}
325-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
325+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
326326
remote: -----> Installing dependencies with Pipenv 2023.2.4
327327
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
328328
remote: -----> Installing SQLite3
@@ -340,7 +340,7 @@
340340
remote: -----> Python app detected
341341
remote: -----> Using Python version specified in Pipfile.lock
342342
remote: -----> Installing python-#{LATEST_PYTHON_3_10}
343-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
343+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
344344
remote: -----> Installing dependencies with Pipenv 2023.2.4
345345
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
346346
remote: -----> Installing SQLite3
@@ -359,7 +359,7 @@
359359
remote: -----> No Python version was specified. Using the buildpack default: python-#{DEFAULT_PYTHON_VERSION}
360360
remote: To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes
361361
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
362-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
362+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
363363
remote: -----> Installing dependencies with Pipenv 2023.2.4
364364
remote: Your Pipfile.lock \\(.+\\) is out of date. Expected: \\(.+\\).
365365
remote: .+

spec/hatchet/python_version_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
remote: -----> Python app detected
1010
remote: -----> Using Python version specified in runtime.txt
1111
remote: -----> Installing python-#{python_version}
12-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
12+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
1313
remote: -----> Installing SQLite3
1414
remote: -----> Installing requirements with pip
1515
remote: Collecting urllib3
@@ -234,7 +234,7 @@
234234
remote: ! See: https://devcenter.heroku.com/articles/python-runtimes
235235
remote: !
236236
remote: -----> Installing python-#{LATEST_PYTHON_3_7}
237-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
237+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
238238
remote: -----> Installing SQLite3
239239
remote: -----> Installing requirements with pip
240240
remote: Collecting urllib3
@@ -346,7 +346,7 @@
346346
remote: -----> Python version has changed from python-#{LATEST_PYTHON_3_9} to python-#{LATEST_PYTHON_3_10}, clearing cache
347347
remote: -----> No change in requirements detected, installing from cache
348348
remote: -----> Installing python-#{LATEST_PYTHON_3_10}
349-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
349+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
350350
remote: -----> Installing SQLite3
351351
remote: -----> Installing requirements with pip
352352
remote: Collecting urllib3

spec/hatchet/stack_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
remote: -----> Stack has changed from heroku-20 to heroku-22, clearing cache
3232
remote: -----> No change in requirements detected, installing from cache
3333
remote: -----> Installing python-3.10.5
34-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
34+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
3535
remote: -----> Installing SQLite3
3636
remote: -----> Installing requirements with pip
3737
remote: Collecting urllib3
@@ -63,7 +63,7 @@
6363
remote: -----> Stack has changed from heroku-22 to heroku-20, clearing cache
6464
remote: -----> No change in requirements detected, installing from cache
6565
remote: -----> Installing python-#{DEFAULT_PYTHON_VERSION}
66-
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.37.1
66+
remote: -----> Installing pip 22.3.1, setuptools 63.4.3 and wheel 0.38.4
6767
remote: -----> Installing SQLite3
6868
remote: -----> Installing requirements with pip
6969
remote: Collecting urllib3

0 commit comments

Comments
 (0)