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
ad53dc61
Commit
ad53dc61
authored
Feb 10, 2016
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improvements to warnings and minor bugfix.
parent
85982967
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
CHANGELOG.md
CHANGELOG.md
+4
-0
compile
bin/compile
+3
-3
warnings
bin/warnings
+1
-1
No files found.
CHANGELOG.md
View file @
ad53dc61
# Python Buildpack Changelog
# Python Buildpack Changelog
## v77 (2016-02-10)
Improvements to warnings and minor bugfix.
## v76 (2016-02-08)
## v76 (2016-02-08)
Improved Django collectstatic support.
Improved Django collectstatic support.
...
...
bin/compile
View file @
ad53dc61
...
@@ -39,7 +39,7 @@ SETUPTOOLS_VERSION="19.6"
...
@@ -39,7 +39,7 @@ SETUPTOOLS_VERSION="19.6"
# Common Problem Warnings
# Common Problem Warnings
export
WARNINGS_LOG
=
$(
mktemp
)
export
WARNINGS_LOG
=
$(
mktemp
)
export
DEFAULT_PYTHON_VERSION
export
RECOMMENDED_PYTHON_VERSION
=
$
DEFAULT_PYTHON_VERSION
# Setup bpwatch
# Setup bpwatch
export
PATH
=
$PATH
:
$ROOT_DIR
/vendor/bpwatch
export
PATH
=
$PATH
:
$ROOT_DIR
/vendor/bpwatch
...
@@ -57,8 +57,8 @@ export PATH=$PATH:$ROOT_DIR/vendor/pip-pop
...
@@ -57,8 +57,8 @@ export PATH=$PATH:$ROOT_DIR/vendor/pip-pop
# Sanitizing environment variables.
# Sanitizing environment variables.
unset
GIT_DIR PYTHONHOME PYTHONPATH LD_LIBRARY_PATH LIBRARY_PATH
unset
GIT_DIR PYTHONHOME PYTHONPATH LD_LIBRARY_PATH LIBRARY_PATH
unset
RECEIVE_DATA
SOURCE_VERSION RUN_KEY BUILD_INFO DEPLOY
unset
RECEIVE_DATA
RUN_KEY BUILD_INFO DEPLOY LOG_TOKEN DYNO
unset
LOG_TOKEN DYNO
CYTOKINE_LOG_FILE GEM_PATH
unset
CYTOKINE_LOG_FILE GEM_PATH
# Setup buildpack instrumentation.
# Setup buildpack instrumentation.
bpwatch init
$LOGPLEX_KEY
bpwatch init
$LOGPLEX_KEY
...
...
bin/warnings
View file @
ad53dc61
...
@@ -5,7 +5,7 @@ old-platform() {
...
@@ -5,7 +5,7 @@ old-platform() {
echo
echo
puts-warn "Hello! It looks like your application is using an outdated version of Python."
puts-warn "Hello! It looks like your application is using an outdated version of Python."
puts-warn "This caused the security warning you saw above during the 'pip install' step."
puts-warn "This caused the security warning you saw above during the 'pip install' step."
puts-warn "We recommend '$
DEFAULT
_PYTHON_VERSION', which you can specify in a 'runtime.txt' file."
puts-warn "We recommend '$
RECOMMENDED
_PYTHON_VERSION', which you can specify in a 'runtime.txt' file."
puts-warn " -- Much Love, Heroku."
puts-warn " -- Much Love, Heroku."
fi
fi
}
}
...
...
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