Specify version number for ujson and plac

The required version was specified for plac in requirements.txt but not in setup.py, which could cause a conflicting version error.
Similarly, set the version of ujson in requirements.txt to be the same as in setup.py
This commit is contained in:
Raphaël Bournhonesque 2017-01-28 18:38:14 +01:00
parent afd622fe04
commit 0c2e5539ce
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@ thinc>=6.2.0,<6.3.0
murmurhash>=0.26,<0.27 murmurhash>=0.26,<0.27
plac<0.9.3 plac<0.9.3
six six
ujson ujson>=1.35
cloudpickle cloudpickle
sputnik>=0.9.2,<0.10.0 sputnik>=0.9.2,<0.10.0

View File

@ -234,7 +234,7 @@ def setup_package():
'cymem>=1.30,<1.32', 'cymem>=1.30,<1.32',
'preshed>=0.46.0,<0.47.0', 'preshed>=0.46.0,<0.47.0',
'thinc>=6.2.0,<6.3.0', 'thinc>=6.2.0,<6.3.0',
'plac', 'plac<0.9.3',
'six', 'six',
'cloudpickle', 'cloudpickle',
'pathlib', 'pathlib',