From 5d595b5a8c916a89c92136a7b09212ff55454be1 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 30 Jun 2015 18:10:37 +0200 Subject: [PATCH] * Inc versions --- requirements.txt | 2 +- setup.py | 4 ++-- spacy/en/download.py | 7 +------ 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index bb5531f14..0721a1b00 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ cython cymem == 1.11 pathlib preshed == 0.37 -thinc == 3.0 +thinc == 3.2 murmurhash == 0.24 unidecode numpy diff --git a/setup.py b/setup.py index 5e2c9f480..fba982ab1 100644 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ def run_setup(exts): ext_modules=exts, license="Dual: Commercial or AGPL", install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.37', - 'thinc == 3.0', "unidecode", 'wget', 'plac', 'six', + 'thinc == 3.2', "unidecode", 'wget', 'plac', 'six', 'ujson'], setup_requires=["headers_workaround"], ) @@ -130,7 +130,7 @@ def run_setup(exts): headers_workaround.install_headers('numpy') -VERSION = '0.86' +VERSION = '0.87' def main(modules, is_pypy): language = "cpp" includes = ['.', path.join(sys.prefix, 'include')] diff --git a/spacy/en/download.py b/spacy/en/download.py index ecad6ab85..ae61a6011 100644 --- a/spacy/en/download.py +++ b/spacy/en/download.py @@ -7,17 +7,12 @@ import wget import plac # TODO: Read this from the same source as the setup -VERSION = '0.8.6' +VERSION = '0.8.7' AWS_STORE = 'http://s3-us-west-1.amazonaws.com/media.spacynlp.com' ALL_DATA_DIR_URL = '%s/en_data_all-%s.tgz' % (AWS_STORE, VERSION) -SM_DATA_DIR_URL = '%s/en_data_sm-%s.tgz' % (AWS_STORE, VERSION) - -SPEECH_DATA_DIR_URL = '%s/en_data_speech-%s.tgz' % (AWS_STORE, VERSION) - - DEST_DIR = path.join(path.dirname(__file__), 'data') def download_file(url, out):