File tree Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Python Buildpack Changelog
2
2
3
+ # 142 (2018-10-22)
4
+
5
+ Python 3.7.1, 3.6.7 and 3.5.6 now available on all Heroku stacks.
6
+
3
7
# 141 (2018-10-10)
4
8
5
9
Switch to cautious upgrade for Pipenv install to ensure the pinned pip version
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ sqlite3_install "$OUT_PREFIX" "$SQLITE3_VERSION" 1
15
15
echo " Building Python…"
16
16
SOURCE_TARBALL=' https://python.org/ftp/python/3.5.6/Python-3.5.6.tgz'
17
17
curl -L $SOURCE_TARBALL | tar xz
18
- mv Python-3.7.0 src
18
+ mv Python-3.5.6 src
19
19
cd src
20
20
21
21
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
@@ -26,4 +26,7 @@ make install
26
26
# https://github.com/docker-library/python
27
27
find " ${OUT_PREFIX} " \( -type d -a \( -name test -o -name tests \) \) -exec rm -rf ' {}' +
28
28
29
- ln $OUT_PREFIX /bin/python3 $OUT_PREFIX /bin/python
29
+ # Remove spare /
30
+ LOCATION=${OUT_PREFIX% ?}
31
+
32
+ ln $LOCATION /bin/python3 $LOCATION /bin/python
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ sqlite3_install "$OUT_PREFIX" "$SQLITE3_VERSION" 1
15
15
echo " Building Python…"
16
16
SOURCE_TARBALL=' https://python.org/ftp/python/3.6.7/Python-3.6.7.tgz'
17
17
curl -L $SOURCE_TARBALL | tar xz
18
- mv Python-3.7.0 src
18
+ mv Python-3.6.7 src
19
19
cd src
20
20
21
21
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
@@ -26,4 +26,7 @@ make install
26
26
# https://github.com/docker-library/python
27
27
find " ${OUT_PREFIX} " \( -type d -a \( -name test -o -name tests \) \) -exec rm -rf ' {}' +
28
28
29
- ln $OUT_PREFIX /bin/python3 $OUT_PREFIX /bin/python
29
+ # Remove spare /
30
+ LOCATION=${OUT_PREFIX% ?}
31
+
32
+ ln $LOCATION /bin/python3 $LOCATION /bin/python
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ sqlite3_install "$OUT_PREFIX" "$SQLITE3_VERSION" 1
15
15
echo " Building Python…"
16
16
SOURCE_TARBALL=' https://python.org/ftp/python/3.7.1/Python-3.7.1.tgz'
17
17
curl -L $SOURCE_TARBALL | tar xz
18
- mv Python-3.7.0 src
18
+ mv Python-3.7.1 src
19
19
cd src
20
20
21
21
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
@@ -26,4 +26,7 @@ make install
26
26
# https://github.com/docker-library/python
27
27
find " ${OUT_PREFIX} " \( -type d -a \( -name test -o -name tests \) \) -exec rm -rf ' {}' +
28
28
29
- ln $OUT_PREFIX /bin/python3 $OUT_PREFIX /bin/python
29
+ # Remove spare /
30
+ LOCATION=${OUT_PREFIX% ?}
31
+
32
+ ln $LOCATION /bin/python3 $LOCATION /bin/python
You can’t perform that action at this time.
0 commit comments