* Update requirements

This commit is contained in:
Matthew Honnibal 2015-11-03 02:40:01 +11:00
parent 4fb038a9eb
commit f56209ef2e
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
cython
cymem == 1.11
cymem == 1.30
pathlib
preshed >= 0.42
thinc == 3.3
preshed >= 0.43
thinc == 3.4.1
murmurhash == 0.24
text-unidecode
numpy

View File

@ -175,8 +175,8 @@ def run_setup(exts):
"spacy.syntax": ["*.pxd"]},
ext_modules=exts,
license="MIT",
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed >= 0.42',
'thinc == 3.3', "text_unidecode", 'plac', 'six',
install_requires=['numpy', 'murmurhash', 'cymem >= 1.30', 'preshed >= 0.43',
'thinc >= 3.4.1', "text_unidecode", 'plac', 'six',
'ujson', 'cloudpickle'],
setup_requires=["headers_workaround"],
cmdclass = {'build_ext': build_ext_subclass },