From dea1245311127dc149531f244fb90a49db390418 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 1 Feb 2015 17:04:59 +1100 Subject: [PATCH] * Require advanced version of cymem --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 143de8476..6b4f93832 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ cython -cymem +cymem >= 1.11 preshed thinc murmurhash diff --git a/setup.py b/setup.py index 47db1089a..4af9bf72f 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,7 @@ def run_setup(exts): "spacy.syntax": ["*.pxd"]}, ext_modules=exts, license="Dual: Commercial or AGPL", - install_requires=['numpy', 'murmurhash', 'cymem', 'preshed', 'thinc', + install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed', 'thinc', "unidecode", 'wget', 'plac', 'six'], setup_requires=["headers_workaround"], )