From a43777cef80997830d51d7b3a5546893c9e1ef13 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 19 Oct 2015 07:46:42 +0200 Subject: [PATCH 1/2] * Inc version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8070193c2..090b80f96 100644 --- a/setup.py +++ b/setup.py @@ -175,7 +175,7 @@ def run_setup(exts): headers_workaround.install_headers('numpy') -VERSION = '0.95' +VERSION = '0.96' def main(modules, is_pypy): language = "cpp" includes = ['.', path.join(sys.prefix, 'include')] From 54dbbc0bfc3c9ff0fd3ba731fbaa266e6e6edcb5 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 19 Oct 2015 07:47:14 +0200 Subject: [PATCH 2/2] * Don't use cache dir in prebuild --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index b7ef6f18f..61a2dcdc3 100644 --- a/fabfile.py +++ b/fabfile.py @@ -48,7 +48,7 @@ def prebuild(build_dir='/tmp/build_spacy'): local('virtualenv ' + build_venv) with prefix('cd %s && PYTHONPATH=`pwd` && . %s/bin/activate' % (build_dir, build_venv)): local('pip install cython fabric fabtools pytest') - local('pip install -r requirements.txt') + local('pip install --no-cache-dir -r requirements.txt') local('fab clean make') local('cp -r %s/corpora/en/wordnet corpora/en/' % spacy_dir) local('cp %s/corpora/en/freqs.txt.gz corpora/en/' % spacy_dir)