mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
* Pin versions to ranges, to escape version lock
This commit is contained in:
parent
4b4eec8b47
commit
e38205a838
|
@ -1,13 +1,13 @@
|
||||||
cython
|
cython
|
||||||
cymem == 1.30
|
cymem>=1.30,<1.31
|
||||||
pathlib
|
pathlib
|
||||||
preshed == 0.46.1
|
preshed>=0.46.1,<0.47.0
|
||||||
thinc == 4.1.0
|
thinc>=4.2.0,<4.3.0
|
||||||
murmurhash == 0.26
|
murmurhash>=0.26,<0.27
|
||||||
text-unidecode
|
text-unidecode
|
||||||
numpy
|
numpy
|
||||||
plac
|
plac
|
||||||
six
|
six
|
||||||
ujson
|
ujson
|
||||||
cloudpickle
|
cloudpickle
|
||||||
sputnik == 0.6.4
|
sputnik>=0.6.4,<0.7.0
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -269,9 +269,9 @@ def setup_package():
|
||||||
url='https://spacy.io',
|
url='https://spacy.io',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
ext_modules=ext_modules,
|
ext_modules=ext_modules,
|
||||||
install_requires=['numpy', 'murmurhash == 0.26', 'cymem == 1.30', 'preshed == 0.46.1',
|
install_requires=['numpy', 'murmurhash>=0.26,<0.27', 'cymem>=1.30,<1.31', 'preshed>=0.46.1,<0.47',
|
||||||
'thinc == 4.1.0', 'text_unidecode', 'plac', 'six',
|
'thinc>=4.2.0,<4.3.0', 'text_unidecode', 'plac', 'six',
|
||||||
'ujson', 'cloudpickle', 'sputnik == 0.6.4'],
|
'ujson', 'cloudpickle', 'sputnik>=0.6.4,<0.7.0'],
|
||||||
cmdclass = {
|
cmdclass = {
|
||||||
'build_ext': build_ext_subclass},
|
'build_ext': build_ext_subclass},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user