mirror of https://github.com/explosion/spaCy.git
* Require preshed 0.41
This commit is contained in:
parent
6076213c16
commit
65f3ce6c52
|
@ -1,7 +1,7 @@
|
||||||
cython
|
cython
|
||||||
cymem == 1.11
|
cymem == 1.11
|
||||||
pathlib
|
pathlib
|
||||||
preshed == 0.37
|
preshed == 0.41
|
||||||
thinc == 3.3
|
thinc == 3.3
|
||||||
murmurhash == 0.24
|
murmurhash == 0.24
|
||||||
unidecode
|
unidecode
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -119,7 +119,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 >= 1.11', 'preshed == 0.37',
|
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.41',
|
||||||
'thinc == 3.3', "unidecode", 'wget', 'plac', 'six',
|
'thinc == 3.3', "unidecode", 'wget', 'plac', 'six',
|
||||||
'ujson'],
|
'ujson'],
|
||||||
setup_requires=["headers_workaround"],
|
setup_requires=["headers_workaround"],
|
||||||
|
|
Loading…
Reference in New Issue