Skip to content

Commit e965516

Browse files
committed
fix python 3.5.7 formula actually building 3.7.2
1 parent 8775cb8 commit e965516

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Python Buildpack Changelog
22

3+
# 154 (2019-07-17)
4+
5+
Fix python 3.5.7 formula actually building 3.7.2
6+
37
# 153 (2019-06-21)
48

59
Hotfix for broken heroku-16 deploys

builds/runtimes/python-3.5.7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ echo "Setting up SQLite3 Headers for $SQLITE3_VERSION"
1313
sqlite3_install "$OUT_PREFIX" "$SQLITE3_VERSION" 1
1414

1515
echo "Building Python…"
16-
SOURCE_TARBALL='https://python.org/ftp/python/3.7.2/Python-3.7.2.tgz'
16+
SOURCE_TARBALL='https://python.org/ftp/python/3.5.7/Python-3.5.7.tgz'
1717
curl -L $SOURCE_TARBALL | tar xz
18-
mv Python-3.7.2 src
18+
mv Python-3.5.7 src
1919
cd src
2020

2121
./configure --prefix=$OUT_PREFIX --with-ensurepip=no

0 commit comments

Comments
 (0)