mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
Require numpy>=1.15.0 to avoid the RuntimeWarning
This commit is contained in:
parent
19f5046934
commit
7be9118be3
|
@ -1,5 +1,5 @@
|
||||||
cython>=0.24,<0.28.0
|
cython>=0.24,<0.28.0
|
||||||
numpy>=1.7
|
numpy>=1.15.0
|
||||||
cymem>=1.30,<1.32
|
cymem>=1.30,<1.32
|
||||||
preshed>=1.0.0,<2.0.0
|
preshed>=1.0.0,<2.0.0
|
||||||
thinc>=6.10.3,<6.11.0
|
thinc>=6.10.3,<6.11.0
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -186,7 +186,7 @@ def setup_package():
|
||||||
ext_modules=ext_modules,
|
ext_modules=ext_modules,
|
||||||
scripts=['bin/spacy'],
|
scripts=['bin/spacy'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy>=1.7',
|
'numpy>=1.15.0',
|
||||||
'murmurhash>=0.28,<0.29',
|
'murmurhash>=0.28,<0.29',
|
||||||
'cymem>=1.30,<1.32',
|
'cymem>=1.30,<1.32',
|
||||||
'preshed>=1.0.0,<2.0.0',
|
'preshed>=1.0.0,<2.0.0',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user