* Pin versions to ranges, to escape version lock

This commit is contained in:
Matthew Honnibal 2015-12-31 01:57:32 +01:00
parent 4b4eec8b47
commit e38205a838
2 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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},
) )