From 87fe01612ac5d05897477844874fee9bfcb1610d Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 5 Jan 2015 19:11:12 +1100 Subject: [PATCH] * Remove dependency on numpy and ujson --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 907bb087e..130e3642b 100644 --- a/setup.py +++ b/setup.py @@ -61,8 +61,8 @@ def run_setup(exts): "spacy.syntax": ["*.pxd"]}, ext_modules=exts, license="Dual: Commercial or AGPL", - install_requires=['murmurhash', 'numpy', 'cymem', 'preshed', 'thinc', - "unidecode", "ujson"], + install_requires=['murmurhash', 'cymem', 'preshed', 'thinc', + "unidecode", ], setup_requires=["headers_workaround"], )