Skip to content
Snippets Groups Projects
Commit 5a979874 authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

scipy-included

parent a32ca255
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,20 @@ pylibmc-missing() { ...@@ -8,7 +8,20 @@ pylibmc-missing() {
fi fi
} }
scipy-included() {
if grep -qi 'running setup.py install for scipy' "$WARNINGS_LOG"; then
puts-warn "Hello! It looks like you're trying to use scipy on Heroku."
puts-warn "Unfortunately, at this time, we do not directly support this library."
puts-warn "There is, however, a buildpack available that makes it possible to use it on Heroku."
puts-warn "You can learn more here: https://devcenter.heroku.com/articles/python-c-deps"
puts-warn "Sorry for the inconvenience. -- Much Love, Heroku."
fi
}
show-warnings() { show-warnings() {
pylibmc-missing pylibmc-missing
scipy-included
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment