mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c8142b02d | |||
| 590d10ea60 | |||
| 4723abb896 |
@@ -1,5 +1,9 @@
|
|||||||
# Python Buildpack Changelog
|
# Python Buildpack Changelog
|
||||||
|
|
||||||
|
# 113
|
||||||
|
|
||||||
|
- Updates to Pipenv support.
|
||||||
|
|
||||||
# 112
|
# 112
|
||||||
|
|
||||||
Bugfix.
|
Bugfix.
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@ if [[ -f Pipfile ]]; then
|
|||||||
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
|
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
|
||||||
|
|
||||||
# Install the dependencies.
|
# Install the dependencies.
|
||||||
/app/.heroku/python/bin/pipenv install --system 2>&1 | indent
|
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
|
||||||
|
|
||||||
# Skip pip install, later.
|
# Skip pip install, later.
|
||||||
export SKIP_PIP_INSTALL=1
|
export SKIP_PIP_INSTALL=1
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# Detect Python-version with Pipenv.
|
# Detect Python-version with Pipenv.
|
||||||
|
|
||||||
if [[ -f $BUILD_DIR/Pipfile.lock ]]; then
|
if [[ -f $BUILD_DIR/Pipfile ]]; then
|
||||||
|
|
||||||
if [[ ! -f $BUILD_DIR/runtime.txt ]]; then
|
if [[ ! -f $BUILD_DIR/runtime.txt ]]; then
|
||||||
if [[ ! -f $BUILD_DIR/Pipfile.lock ]]; then
|
if [[ ! -f $BUILD_DIR/Pipfile.lock ]]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user