Merge branch 'master' into revise_packaging

This commit is contained in:
Matthew Honnibal 2015-12-31 15:36:59 +01:00
commit aa51014f71
2 changed files with 8 additions and 8 deletions

View File

@ -1,13 +1,13 @@
cython
cymem == 1.30
cymem>=1.30,<1.31
pathlib
preshed == 0.46.1
thinc == 4.1.0
murmurhash == 0.26
preshed>=0.46.1,<0.47.0
thinc>=4.2.0,<4.3.0
murmurhash>=0.26,<0.27
text-unidecode
numpy
plac
six
ujson
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',
license='MIT',
ext_modules=ext_modules,
install_requires=['numpy', 'murmurhash == 0.26', 'cymem == 1.30', 'preshed == 0.46.1',
'thinc == 4.1.0', 'text_unidecode', 'plac', 'six',
'ujson', 'cloudpickle', 'sputnik == 0.6.4'],
install_requires=['numpy', 'murmurhash>=0.26,<0.27', 'cymem>=1.30,<1.31', 'preshed>=0.46.1,<0.47',
'thinc>=4.2.0,<4.3.0', 'text_unidecode', 'plac', 'six',
'ujson', 'cloudpickle', 'sputnik>=0.6.4,<0.7.0'],
cmdclass = {
'build_ext': build_ext_subclass},
)