From 4c9e3c7911dc03e098c13ffb68698c2692cbd479 Mon Sep 17 00:00:00 2001 From: Henning Peters Date: Sun, 14 Feb 2016 16:03:17 +0100 Subject: [PATCH] upgrade spuntik, enforce data api via model version constraints --- requirements.txt | 2 +- setup.py | 2 +- spacy/about.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 902b35d19..d16a37c7a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,4 +10,4 @@ plac six ujson cloudpickle -sputnik>=0.8.0,<0.9.0 +sputnik>=0.9.0,<0.10.0 diff --git a/setup.py b/setup.py index 5c6cbbf01..a726aa539 100644 --- a/setup.py +++ b/setup.py @@ -175,7 +175,7 @@ def setup_package(): ext_modules=ext_modules, install_requires=['numpy', 'murmurhash>=0.26,<0.27', 'cymem>=1.30,<1.32.0', 'preshed>=0.46.1,<0.47', 'thinc>=5.0.0,<5.1.0', 'text_unidecode', 'plac', 'six', - 'ujson', 'cloudpickle', 'sputnik>=0.8.0,<0.9.0'], + 'ujson', 'cloudpickle', 'sputnik>=0.9.0,<0.10.0'], cmdclass = { 'build_ext': build_ext_subclass}, ) diff --git a/spacy/about.py b/spacy/about.py index d01cf8f69..77c536946 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -11,4 +11,4 @@ __author__ = 'Matthew Honnibal' __email__ = 'matt@spacy.io' __license__ = 'MIT' __release__ = True -__default_model__ = 'en_default' +__default_model__ = 'en>=1.0.0,<1.1.0'