Skip to content

Commit 70ec997

Browse files

File tree

12 files changed

+32
-16
lines changed

12 files changed

+32
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Unreleased
44

5+
- Python 3.7.14, 3.8.14 and 3.9.14 are now available ([#1362](https://github.com/heroku/heroku-buildpack-python/pull/1362)).
56

67
## v217 (2022-09-06)
78

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ Specify a Python Runtime
6161
Supported runtime options include:
6262

6363
- `python-3.10.7` on all [supported stacks](https://devcenter.heroku.com/articles/stack#stack-support-details)
64-
- `python-3.9.13` on all [supported stacks](https://devcenter.heroku.com/articles/stack#stack-support-details)
65-
- `python-3.8.13` on Heroku-18 and Heroku-20 only
66-
- `python-3.7.13` on Heroku-18 and Heroku-20 only
64+
- `python-3.9.14` on all [supported stacks](https://devcenter.heroku.com/articles/stack#stack-support-details)
65+
- `python-3.8.14` on Heroku-18 and Heroku-20 only
66+
- `python-3.7.14` on Heroku-18 and Heroku-20 only

bin/default_pythons

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# shellcheck disable=2034
77

88
LATEST_310="python-3.10.7"
9-
LATEST_39="python-3.9.13"
10-
LATEST_38="python-3.8.13"
11-
LATEST_37="python-3.7.13"
9+
LATEST_39="python-3.9.14"
10+
LATEST_38="python-3.8.14"
11+
LATEST_37="python-3.7.14"
1212
LATEST_36="python-3.6.15"
1313
LATEST_35="python-3.5.10"
1414
LATEST_34="python-3.4.10"

builds/runtimes/python-3.7.14

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

builds/runtimes/python-3.8.14

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

builds/runtimes/python-3.9.14

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

spec/fixtures/ci_nose/runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.9.13
1+
python-3.9.14
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.13
1+
python-3.7.14
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.8.13
1+
python-3.8.14
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.9.13
1+
python-3.9.14

0 commit comments

Comments
 (0)