mirror of https://github.com/explosion/spaCy.git
Remove msgpack dependency, to try to fix #2995
This commit is contained in:
parent
98fe1ab259
commit
61abb1ef70
|
@ -1,9 +1,8 @@
|
|||
cython>=0.24,<0.28.0
|
||||
numpy>=1.15.0
|
||||
msgpack-numpy<0.4.4.0
|
||||
cymem>=2.0.2,<2.1.0
|
||||
preshed>=2.0.1,<2.1.0
|
||||
thinc>=6.12.0,<6.13.0
|
||||
thinc>=6.12.1,<6.13.0
|
||||
murmurhash>=0.28.0,<1.1.0
|
||||
plac<1.0.0,>=0.9.6
|
||||
ujson>=1.35
|
||||
|
|
3
setup.py
3
setup.py
|
@ -188,11 +188,10 @@ def setup_package():
|
|||
setup_requires=['wheel>=0.32.0,<0.33.0'],
|
||||
install_requires=[
|
||||
'numpy>=1.15.0',
|
||||
'msgpack-numpy<0.4.4',
|
||||
'murmurhash>=0.28.0,<1.1.0',
|
||||
'cymem>=2.0.2,<2.1.0',
|
||||
'preshed>=2.0.1,<2.1.0',
|
||||
'thinc>=6.12.0,<6.13.0',
|
||||
'thinc>=6.12.1,<6.13.0',
|
||||
'plac<1.0.0,>=0.9.6',
|
||||
'ujson>=1.35',
|
||||
'dill>=0.2,<0.3',
|
||||
|
|
Loading…
Reference in New Issue