Merge branch 'master' of github.com:heroku/heroku-buildpack-python

This commit is contained in:
2017-03-23 18:22:15 -04:00
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -1,5 +1,11 @@
# Python Buildpack Changelog
## 102
Buildpack code cleanup.
- Improved messaging around NLTK.
## 101
Updated setuptools installation method.
+2 -1
View File
@@ -23,7 +23,8 @@ if [ $? -eq 0 ]; then
python -m nltk.downloader -d $BUILD_DIR/.heroku/python/nltk_data $nltk_packages | indent
set-env NLTK_DATA "/app/.heroku/python/nltk_data"
else
puts-warn "nltk.txt not found, not downloading any corpora"
puts-warn "'nltk.txt' not found, not downloading any corpora"
puts-warn "Learn more: https://devcenter.heroku.com/articles/python-nltk"
fi
fi