Compare commits

...

3 Commits

Author SHA1 Message Date
kennethreitz 0c8142b02d update changelog
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-08-31 13:19:11 -04:00
kennethreitz 590d10ea60 Merge remote-tracking branch 'origin/master' 2017-08-31 13:18:37 -04:00
kennethreitz 4723abb896 Pipenv Updates (#458)
* fixed the bug for pypy-5.8.0

* update pipenv support

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-08-31 13:18:26 -04:00
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
# Python Buildpack Changelog # Python Buildpack Changelog
# 113
- Updates to Pipenv support.
# 112 # 112
Bugfix. Bugfix.
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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