mirror of https://github.com/explosion/spaCy.git
* Require advanced version of cymem
This commit is contained in:
parent
ac20a53509
commit
dea1245311
|
@ -1,5 +1,5 @@
|
||||||
cython
|
cython
|
||||||
cymem
|
cymem >= 1.11
|
||||||
preshed
|
preshed
|
||||||
thinc
|
thinc
|
||||||
murmurhash
|
murmurhash
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -102,7 +102,7 @@ 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', 'preshed', 'thinc',
|
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed', 'thinc',
|
||||||
"unidecode", 'wget', 'plac', 'six'],
|
"unidecode", 'wget', 'plac', 'six'],
|
||||||
setup_requires=["headers_workaround"],
|
setup_requires=["headers_workaround"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue