Compare commits

..

3 Commits

Author SHA1 Message Date
kennethreitz 3b2c0b5df9 v99 2017-02-15 13:52:17 -05:00
kennethreitz 49b9eaa93e cleanup 2017-02-15 13:51:39 -05:00
kennethreitz 677dfeec11 cleanup 2017-02-15 13:49:59 -05:00
2 changed files with 4 additions and 5 deletions
+4
View File
@@ -1,5 +1,9 @@
# Python Buildpack Changelog
## 99
Cleanup.
## 98
Official NLTK support and other improvements.
-5
View File
@@ -14,9 +14,6 @@ source $BIN_DIR/utils
bpwatch start nltk_download
export NLTK_DATA_DIR="$BUILD_DIR/nltk_data"
export NLTK_DATA="$BUILD_DIR/nltk_data"
# Check that nltk was installed by pip, otherwise obviously not needed
python -m nltk.downloader -h >/dev/null 2>&1
if [ $? -eq 0 ]; then
@@ -30,8 +27,6 @@ if [ $? -eq 0 ]; then
else
puts-warn "nltk.txt not found, not downloading any corpora"
fi
else
puts-warn "nltk not apparently installed, not downloading packages"
fi