Skip to content

Commit d735151

Browse files
committed
changelog and test update
1 parent fe029af commit d735151

File tree

9 files changed

+20
-16
lines changed

9 files changed

+20
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Python Buildpack Changelog
22

3-
# 146 (2018-15-08)
3+
# 147 (2018-12-12)
4+
5+
Python 3.7.2 and 3.6.8 now available on all Heroku stacks.
6+
7+
# 146 (2018-08-15)
48

59
Python 3.7.1, 3.6.7, 3.5.6 and 3.4.9 now available on all Heroku stacks.
610

7-
# 145 (2018-11-08)
11+
# 145 (2018-08-11)
812

913
Testing and tooling expanded to better support new runtimes
1014

bin/compile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export VENDOR_URL
4949
# These variables are used to specify which versions of Python to install by default,
5050
# as well as prompt the user to upgrade if they are using an un–supported version.
5151
# Note: When 3.7 lands, I recommend switching to LATEST_36 and LATEST_37.
52-
DEFAULT_PYTHON_VERSION="python-3.6.7"
53-
LATEST_36="python-3.6.7"
54-
LATEST_37="python-3.7.1"
52+
DEFAULT_PYTHON_VERSION="python-3.6.8"
53+
LATEST_36="python-3.6.8"
54+
LATEST_37="python-3.7.2"
5555
LATEST_35="python-3.5.6"
5656
LATEST_34="python-3.4.9"
5757
LATEST_27="python-2.7.15"

test/fixtures/python3_6/runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.6.7
1+
python-3.6.8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.6.8
1+
python-3.6.9
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.6.5
1+
python-3.6.7

test/fixtures/python3_7/runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.1
1+
python-3.7.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.2
1+
python-3.7.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.0
1+
python-3.7.1

test/run

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ testPylibmc() {
9494

9595
testPythonDefault() {
9696
compile "pythonDefault"
97-
assertCaptured "python-3.6.7"
97+
assertCaptured "python-3.6.8"
9898
assertCapturedSuccess
9999
}
100100

@@ -169,13 +169,13 @@ testPython3_5_fail() {
169169

170170
testPython3_6() {
171171
compile "python3_6"
172-
assertCaptured "python-3.6.7"
172+
assertCaptured "python-3.6.8"
173173
assertCapturedSuccess
174174
}
175175

176176
testPython3_6_warn() {
177177
compile "python3_6_warn"
178-
assertCaptured "python-3.6.5"
178+
assertCaptured "python-3.6.7"
179179
assertCaptured "security update!"
180180
assertCapturedSuccess
181181
}
@@ -191,7 +191,7 @@ testPython3_7() {
191191
if [[ $STACK = "cedar-14" ]]; then
192192
assertCapturedError
193193
else
194-
assertCaptured "python-3.7.1"
194+
assertCaptured "python-3.7.2"
195195
assertCapturedSuccess
196196
fi
197197
}
@@ -201,7 +201,7 @@ testPython3_7_warn() {
201201
if [[ $STACK = "cedar-14" ]]; then
202202
assertCapturedError
203203
else
204-
assertCaptured "python-3.7.0"
204+
assertCaptured "python-3.7.1"
205205
assertCaptured "security update!"
206206
assertCapturedSuccess
207207
fi

0 commit comments

Comments
 (0)