Skip to content

Commit 67e4de9

Browse files
edmorleydhose
authored andcommitted
1 parent 589bdf4 commit 67e4de9

File tree

12 files changed

+24
-14
lines changed

12 files changed

+24
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Python 3.8.12 and 3.9.7 are now available (CPython) ([#1236](https://github.com/heroku/heroku-buildpack-python/pull/1236)).
6+
- The default Python version for new apps is now 3.9.7 (previously 3.9.6) ([#1236](https://github.com/heroku/heroku-buildpack-python/pull/1236)).
57

68
## v197 (2021-06-28)
79

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ A `requirements.txt` must be present at the root of your application's repositor
4242

4343
To specify your python version, you also need a `runtime.txt` file - unless you are using the default Python runtime version.
4444

45-
Current default Python Runtime: Python 3.9.6
45+
Current default Python Runtime: Python 3.9.7
4646

4747
Alternatively, you can provide a `setup.py` file, or a `Pipfile`.
4848
Using `pipenv` will generate `runtime.txt` at build time if one of the field `python_version` or `python_full_version` is specified in the `requires` section of your `Pipfile`.
@@ -60,7 +60,7 @@ Specify a Python Runtime
6060

6161
Supported runtime options include:
6262

63-
- `python-3.9.6`
64-
- `python-3.8.11`
63+
- `python-3.9.7`
64+
- `python-3.8.12`
6565
- `python-3.7.11`
6666
- `python-3.6.14`

bin/default_pythons

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# the env vars to subprocesses.
66
# shellcheck disable=2034
77

8-
LATEST_39="python-3.9.6"
9-
LATEST_38="python-3.8.11"
8+
LATEST_39="python-3.9.7"
9+
LATEST_38="python-3.8.12"
1010
LATEST_37="python-3.7.11"
1111
LATEST_36="python-3.6.14"
1212
LATEST_35="python-3.5.10"

builds/runtimes/python-3.8.12

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
# Build Path: /app/.heroku/python/
3+
4+
source $(dirname $0)/python3

builds/runtimes/python-3.9.7

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
# Build Path: /app/.heroku/python/
3+
4+
source $(dirname $0)/python3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.9.6
1+
python-3.9.7
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.8.11
1+
python-3.8.12
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.9.6
1+
python-3.9.7
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.9.6
1+
python-3.9.7
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
python-3.9.6
2+
python-3.9.7
33

0 commit comments

Comments
 (0)