From f81389abe06df0e1b8796c20bc8705d82fcb49c2 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 3 Nov 2015 23:12:13 +1100 Subject: [PATCH] * Pin to specific cymem, preshed and thinc versions. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e65ab9fbe..715998956 100644 --- a/setup.py +++ b/setup.py @@ -177,8 +177,8 @@ def run_setup(exts): package_data=PACKAGE_DATA, ext_modules=exts, license="MIT", - install_requires=['numpy', 'murmurhash', 'cymem >= 1.30', 'preshed >= 0.43', - 'thinc >= 3.4.1', "text_unidecode", 'plac', 'six', + install_requires=['numpy', 'murmurhash', 'cymem == 1.30', 'preshed == 0.43', + 'thinc == 3.4.1', "text_unidecode", 'plac', 'six', 'ujson', 'cloudpickle'], setup_requires=["headers_workaround"], cmdclass = {'build_ext': build_ext_subclass }, @@ -191,7 +191,7 @@ def run_setup(exts): headers_workaround.install_headers('numpy') -VERSION = '0.98' +VERSION = '0.99' def main(modules, is_pypy): language = "cpp" includes = ['.', path.join(sys.prefix, 'include')]