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
e8a79bbd
Commit
e8a79bbd
authored
May 26, 2017
by
Kenneth Reitz
Committed by
GitHub
May 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for heroku ci (#392)
* attempted fix * added a comment * fixes * improved changelog
parent
e621ff4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
CHANGELOG.md
CHANGELOG.md
+10
-0
compile
bin/compile
+6
-2
No files found.
CHANGELOG.md
View file @
e8a79bbd
# Python Buildpack Changelog
# 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
## 102
Buildpack code cleanup.
Buildpack code cleanup.
...
...
bin/compile
View file @
e8a79bbd
...
@@ -192,8 +192,12 @@ sub-env $BIN_DIR/steps/nltk
...
@@ -192,8 +192,12 @@ sub-env $BIN_DIR/steps/nltk
mtime
"nltk.download.time"
"
${
start
}
"
mtime
"nltk.download.time"
"
${
start
}
"
# Support for pip install -e.
# Support for pip install -e.
rm
-fr
$BUILD_DIR
/.heroku/src
# In CI, $BUILD_DIR is /app.
deep-cp /app/.heroku/src
$BUILD_DIR
/.heroku/src
if
[[
!
"
$BUILD_DIR
"
==
"/app"
]]
;
then
rm
-fr
$BUILD_DIR
/.heroku/src
deep-cp /app/.heroku/src
$BUILD_DIR
/.heroku/src
fi
# Django collectstatic support.
# Django collectstatic support.
let
start
=
$(
nowms
)
let
start
=
$(
nowms
)
...
...
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