Update to Python 3.7

Python 3.6 is obsolete
This commit is contained in:
Giovanni Campagna 2020-01-13 17:15:30 -08:00
parent 428cc49012
commit d04fe60e28
3 changed files with 121 additions and 1199 deletions

View File

@ -21,4 +21,4 @@ tensorboardX = "*"
Babel = "*"
[requires]
python_version = "3.6"
python_version = "3.7"

1316
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ mkdir -p $SRCDIR/embeddings
for v in glove.6B.50d charNgram ; do
for f in vectors itos table ; do
curl -O "https://parmesan.stanford.edu/glove/${v}.txt.${f}.npy" ; mv ${v}.txt.${f}.npy $SRCDIR/embeddings/
wget -c "https://parmesan.stanford.edu/glove/${v}.txt.${f}.npy" -O $SRCDIR/embeddings/${v}.txt.${f}.npy
done
done