Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Django
heroku-buildpack-python
Commits
c126f623
Unverified
Commit
c126f623
authored
5 years ago
by
Casey
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #891 from heroku/python-27-update
Python 2.7.17
parents
1d938c35
7f639739
Branches
Branches containing commit
Tags
v159
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
bin/default_pythons
+1
-1
1 addition, 1 deletion
bin/default_pythons
builds/runtimes/python-2.7.17
+27
-0
27 additions, 0 deletions
builds/runtimes/python-2.7.17
test/fixtures/python2/runtime.txt
+1
-1
1 addition, 1 deletion
test/fixtures/python2/runtime.txt
with
31 additions
and
2 deletions
CHANGELOG.md
+
2
−
0
View file @
c126f623
...
...
@@ -2,6 +2,8 @@
# Master
-
Python 2.7.17 now available on Heroku 18 and 16.
--------------------------------------------------------------------------------
# 158 (2019-10-21)
...
...
This diff is collapsed.
Click to expand it.
bin/default_pythons
+
1
−
1
View file @
c126f623
...
...
@@ -6,6 +6,6 @@ LATEST_37="python-3.7.5"
LATEST_36
=
"python-3.6.9"
LATEST_35
=
"python-3.5.7"
LATEST_34
=
"python-3.4.10"
LATEST_27
=
"python-2.7.1
6
"
LATEST_27
=
"python-2.7.1
7
"
export
DEFAULT_PYTHON_VERSION LATEST_38 LATEST_37 LATEST_36 LATEST_35 LATEST_34 LATEST_27
This diff is collapsed.
Click to expand it.
builds/runtimes/python-2.7.17
0 → 100755
+
27
−
0
View file @
c126f623
#!/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/2.7.17/Python-2.7.17.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.17 src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-unicode
=
ucs4
--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
'{}'
+
This diff is collapsed.
Click to expand it.
test/fixtures/python2/runtime.txt
+
1
−
1
View file @
c126f623
python-2.7.1
6
python-2.7.1
7
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment