Commit f1c4efb4 authored by Kenneth Reitz's avatar Kenneth Reitz

distribute warning

parent 5a979874
...@@ -18,10 +18,21 @@ scipy-included() { ...@@ -18,10 +18,21 @@ scipy-included() {
fi fi
} }
distribute-included() {
if grep -qi 'Running setup.py install for distribute' "$WARNINGS_LOG"; then
puts-warn "Hello! Your requirements.txt file contains the distribute package."
puts-warn "This library is automatically installed by Heroku and shouldn't be in"
puts-warn "Your requirements.txt file. This can cause unexpected behavior."
puts-warn "-- Much Love, Heroku."
fi
}
show-warnings() { show-warnings() {
pylibmc-missing pylibmc-missing
scipy-included scipy-included
distribute-included
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment