* Use thinc 3.3

This commit is contained in:
Matthew Honnibal 2015-07-24 04:52:50 +02:00
parent c52179f5fa
commit 287d90e792
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ cython
cymem == 1.11 cymem == 1.11
pathlib pathlib
preshed == 0.37 preshed == 0.37
thinc == 3.2 thinc == 3.3
murmurhash == 0.24 murmurhash == 0.24
unidecode unidecode
numpy numpy

View File

@ -120,7 +120,7 @@ def run_setup(exts):
ext_modules=exts, ext_modules=exts,
license="Dual: Commercial or AGPL", license="Dual: Commercial or AGPL",
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.37', install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.37',
'thinc == 3.2', "unidecode", 'wget', 'plac', 'six', 'thinc == 3.3', "unidecode", 'wget', 'plac', 'six',
'ujson'], 'ujson'],
setup_requires=["headers_workaround"], setup_requires=["headers_workaround"],
) )