File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Python Buildpack Changelog
2
2
3
+ # 154 (2019-07-17)
4
+
5
+ Fix python 3.5.7 formula actually building 3.7.2
6
+
7
+ # 153 (2019-06-21)
8
+
9
+ Hotfix for broken heroku-16 deploys
10
+
3
11
# 152 (2019-04-04)
4
12
5
13
Python 3.7.3 now available.
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM heroku/heroku:16-build
3
3
WORKDIR /app
4
4
ENV WORKSPACE_DIR="/app/builds" \
5
5
S3_BUCKET="lang-python" \
6
- S3_PREFIX="heroku-16/"
6
+ S3_PREFIX="heroku-16/" \
7
+ DEBIAN_FRONTEND=noninteractive
7
8
8
9
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
9
10
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM heroku/heroku:18-build
3
3
WORKDIR /app
4
4
ENV WORKSPACE_DIR="/app/builds" \
5
5
S3_BUCKET="lang-python" \
6
- S3_PREFIX="heroku-18/"
6
+ S3_PREFIX="heroku-18/" \
7
+ DEBIAN_FRONTEND=noninteractive
7
8
8
9
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
9
10
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ echo "Setting up SQLite3 Headers for $SQLITE3_VERSION"
13
13
sqlite3_install " $OUT_PREFIX " " $SQLITE3_VERSION " 1
14
14
15
15
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'
17
17
curl -L $SOURCE_TARBALL | tar xz
18
- mv Python-3.7.2 src
18
+ mv Python-3.5.7 src
19
19
cd src
20
20
21
21
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
You can’t perform that action at this time.
0 commit comments