Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
9d363968
Commit
9d363968
authored
Apr 03, 2019
by
Casey Faist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new python and update default
parent
76bb572a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
2 deletions
+38
-2
CHANGELOG.md
CHANGELOG.md
+5
-1
default_pythons
bin/default_pythons
+1
-1
python-3.7.3
builds/runtimes/python-3.7.3
+32
-0
No files found.
CHANGELOG.md
View file @
9d363968
# Python Buildpack Changelog
# Python Buildpack Changelog
# 151 (2019-03-)
# 152 (2019-04-02)
Python 3.7.3 now available.
# 151 (2019-03-21)
Python 3.5.7 and 3.4.10 now available on all Heroku stacks.
Python 3.5.7 and 3.4.10 now available on all Heroku stacks.
...
...
bin/default_pythons
View file @
9d363968
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
DEFAULT_PYTHON_VERSION
=
"python-3.6.8"
DEFAULT_PYTHON_VERSION
=
"python-3.6.8"
LATEST_36
=
"python-3.6.8"
LATEST_36
=
"python-3.6.8"
LATEST_37
=
"python-3.7.
2
"
LATEST_37
=
"python-3.7.
3
"
LATEST_35
=
"python-3.5.7"
LATEST_35
=
"python-3.5.7"
LATEST_34
=
"python-3.4.10"
LATEST_34
=
"python-3.4.10"
LATEST_27
=
"python-2.7.16"
LATEST_27
=
"python-2.7.16"
...
...
builds/runtimes/python-3.7.3
0 → 100755
View file @
9d363968
#!/usr/bin/env bash
# Build Path: /app/.heroku/python/
OUT_PREFIX
=
$1
BIN_DIR
=
"
$(
cd
"
$(
dirname
"
$0
"
)
"
/../..
||
exit
;
pwd
)
/bin"
export
BIN_DIR
# shellcheck source=bin/utils
source
"
$BIN_DIR
/steps/sqlite3"
sqlite3_version
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.3/Python-3.7.3.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.7.3 src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--with-ensurepip
=
no
make
make
install
# Remove unneeded test directories, similar to the official Docker Python images:
# https://github.com/docker-library/python
find
"
${
OUT_PREFIX
}
"
\(
-type
d
-a
\(
-name
test
-o
-name
tests
\)
\)
-exec
rm
-rf
'{}'
+
# Remove spare /
LOCATION
=
${
OUT_PREFIX
%?
}
ln
$LOCATION
/bin/python3
$LOCATION
/bin/python
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment