* Fix requirements in setup.py

This commit is contained in:
Matthew Honnibal 2015-06-07 22:24:21 +02:00
parent 7195c07897
commit ce8e524825

View File

@ -117,8 +117,9 @@ def run_setup(exts):
"spacy.syntax": ["*.pxd"]}, "spacy.syntax": ["*.pxd"]},
ext_modules=exts, ext_modules=exts,
license="Dual: Commercial or AGPL", license="Dual: Commercial or AGPL",
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed', 'thinc', install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.37',
"unidecode", 'wget', 'plac', 'six'], 'thinc == 1.76', "unidecode", 'wget', 'plac', 'six',
'ujson'],
setup_requires=["headers_workaround"], setup_requires=["headers_workaround"],
) )