Update requirements and setup.py

This commit is contained in:
Matthew Honnibal 2018-10-14 23:06:46 +02:00
parent 91593b7378
commit 6e6f6be3f5
2 changed files with 14 additions and 6 deletions

View File

@ -1,9 +1,9 @@
cython>=0.24,<0.28.0 cython>=0.24,<0.28.0
numpy>=1.15.0 numpy>=1.15.0
msgpack-numpy<0.4.4.0 msgpack-numpy<0.4.4.0
cymem>=1.30,<1.32 cymem>=2.0.2,<2.1.0
preshed>=1.0.0,<2.0.0 preshed>=2.0.1,<2.1.0
thinc>=6.10.3,<6.11.0 thinc>=6.10.5,<6.11.0
murmurhash>=0.28.0,<1.1.0 murmurhash>=0.28.0,<1.1.0
plac<1.0.0,>=0.9.6 plac<1.0.0,>=0.9.6
ujson>=1.35 ujson>=1.35

View File

@ -190,15 +190,23 @@ def setup_package():
'numpy>=1.15.0', 'numpy>=1.15.0',
'msgpack-numpy<0.4.4.0' 'msgpack-numpy<0.4.4.0'
'murmurhash>=0.28.0,<1.1.0', 'murmurhash>=0.28.0,<1.1.0',
'cymem>=1.30,<1.32', 'cymem>=2.0.2,<2.1.0',
'preshed>=1.0.0,<2.0.0', 'preshed>=2.0.1,<2.1.0',
'thinc>=6.10.3,<6.11.0', 'thinc>=6.10.5,<6.11.0',
'plac<1.0.0,>=0.9.6', 'plac<1.0.0,>=0.9.6',
'ujson>=1.35', 'ujson>=1.35',
'dill>=0.2,<0.3', 'dill>=0.2,<0.3',
'regex==2018.01.10', 'regex==2018.01.10',
'requests>=2.13.0,<3.0.0', 'requests>=2.13.0,<3.0.0',
'pathlib==1.0.1; python_version < "3.4"'], 'pathlib==1.0.1; python_version < "3.4"'],
extras_require={
'cuda': ['thinc[cuda]>=6.10.5,<6.11.0'],
'cuda80': ['thinc[cuda80]>=6.10.5,<6.11.0'],
'cuda90': ['thinc[cuda91]>=6.10.5,<6.11.0'],
'cuda91': ['thinc[cuda91]>=6.10.5,<6.11.0'],
'cuda92': ['thinc[cuda92]>=6.10.5,<6.11.0'],
'cuda10': ['thinc[cuda10]>=6.10.5,<6.11.0'],
},
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Console', 'Environment :: Console',