mirror of https://github.com/explosion/spaCy.git
* Add cloudpickle requirement
This commit is contained in:
parent
7673e3a32c
commit
d74a1e51d7
|
@ -10,3 +10,4 @@ wget
|
||||||
plac
|
plac
|
||||||
six
|
six
|
||||||
ujson
|
ujson
|
||||||
|
cloudpickle
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -124,7 +124,7 @@ def run_setup(exts):
|
||||||
license="MIT",
|
license="MIT",
|
||||||
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed >= 0.41',
|
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed >= 0.41',
|
||||||
'thinc == 3.3', "text_unidecode", 'wget', 'plac', 'six',
|
'thinc == 3.3', "text_unidecode", 'wget', 'plac', 'six',
|
||||||
'ujson'],
|
'ujson', 'cloudpickle'],
|
||||||
setup_requires=["headers_workaround"],
|
setup_requires=["headers_workaround"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue