fix python 3.5.7 formula actually building 3.7.2

This commit is contained in:
David Zuelke
2019-07-17 01:55:46 +02:00
parent 8775cb821c
commit e965516197
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
# Python Buildpack Changelog
# 154 (2019-07-17)
Fix python 3.5.7 formula actually building 3.7.2
# 153 (2019-06-21)
Hotfix for broken heroku-16 deploys
+2 -2
View File
@@ -13,9 +13,9 @@ echo "Setting up SQLite3 Headers for $SQLITE3_VERSION"
sqlite3_install "$OUT_PREFIX" "$SQLITE3_VERSION" 1
echo "Building Python…"
SOURCE_TARBALL='https://python.org/ftp/python/3.7.2/Python-3.7.2.tgz'
SOURCE_TARBALL='https://python.org/ftp/python/3.5.7/Python-3.5.7.tgz'
curl -L $SOURCE_TARBALL | tar xz
mv Python-3.7.2 src
mv Python-3.5.7 src
cd src
./configure --prefix=$OUT_PREFIX --with-ensurepip=no