mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
fix for heroku ci (#392)
* attempted fix * added a comment * fixes * improved changelog
This commit is contained in:
@@ -1,5 +1,15 @@
|
||||
# Python Buildpack Changelog
|
||||
|
||||
## 103
|
||||
|
||||
Bug fixes and improvements.
|
||||
|
||||
- Fix for Pipenv.
|
||||
- Fix for Heroku CI.
|
||||
- Improve handling of WEB_CONCURRENCY when using multiple buildpacks.
|
||||
- Adjust environment variables set during the build to more closely match those in the dyno environment (DYNO is now available, STACK is not).
|
||||
- Restore the build cache prior to running bin/pre_compile.
|
||||
|
||||
## 102
|
||||
|
||||
Buildpack code cleanup.
|
||||
|
||||
+6
-2
@@ -192,8 +192,12 @@ sub-env $BIN_DIR/steps/nltk
|
||||
mtime "nltk.download.time" "${start}"
|
||||
|
||||
# Support for pip install -e.
|
||||
rm -fr $BUILD_DIR/.heroku/src
|
||||
deep-cp /app/.heroku/src $BUILD_DIR/.heroku/src
|
||||
# In CI, $BUILD_DIR is /app.
|
||||
if [[ ! "$BUILD_DIR" == "/app" ]]; then
|
||||
rm -fr $BUILD_DIR/.heroku/src
|
||||
deep-cp /app/.heroku/src $BUILD_DIR/.heroku/src
|
||||
fi
|
||||
|
||||
|
||||
# Django collectstatic support.
|
||||
let start=$(nowms)
|
||||
|
||||
Reference in New Issue
Block a user