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
2e37a969
Commit
2e37a969
authored
Mar 14, 2017
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more cleanups
parent
12c3b8cb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
CHANGELOG.md
CHANGELOG.md
+7
-0
compile
bin/compile
+0
-2
No files found.
CHANGELOG.md
View file @
2e37a969
# Python Buildpack Changelog
## 101
Cleanups.
-
Remove legacy instrumentation.
-
Remove legacy virtualenv support.
## 100
Preliminary pipenv support.
...
...
bin/compile
View file @
2e37a969
...
...
@@ -120,7 +120,6 @@ cp -R $CACHE_DIR/.heroku/python .heroku/ &> /dev/null || true
cp
-R
$CACHE_DIR
/.heroku/python-stack .heroku/ &> /dev/null
||
true
cp
-R
$CACHE_DIR
/.heroku/python-version .heroku/ &> /dev/null
||
true
cp
-R
$CACHE_DIR
/.heroku/vendor .heroku/ &> /dev/null
||
true
cp
-R
$CACHE_DIR
/.heroku/venv .heroku/ &> /dev/null
||
true
if
[[
-d
$CACHE_DIR
/.heroku/src
]]
;
then
cp
-R
$CACHE_DIR
/.heroku/src .heroku/ &> /dev/null
||
true
fi
...
...
@@ -134,7 +133,6 @@ if [[ $BUILD_DIR != '/app' ]]; then
# we will not remove these later so subsequent buildpacks can still invoke it
ln
-nsf
$BUILD_DIR
/.heroku/python /app/.heroku/python
ln
-nsf
$BUILD_DIR
/.heroku/vendor /app/.heroku/vendor
ln
-nsf
$BUILD_DIR
/.heroku/venv /app/.heroku/venv
# Note: .heroku/src is copied in later.
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