From 55bd1469dc75da1ea1ed3e584967780faa7ebf6b Mon Sep 17 00:00:00 2001 From: Henning Peters Date: Tue, 15 Dec 2015 15:34:27 +0100 Subject: [PATCH] add newer sputnik version --- .appveyor.yml | 4 ++-- .travis.yml | 4 ++-- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 739f89819..09beb72fc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -61,8 +61,8 @@ build_script: - ps: appveyor\download.ps1 - "tar -xzf corpora/en/wordnet.tar.gz" - "%CMD_IN_ENV% python bin/init_model.py en lang_data/ corpora/ data" - - "%CMD_IN_ENV% sputnik build ." - - "%CMD_IN_ENV% sputnik install en_default-*.sputnik" + - "%CMD_IN_ENV% sputnik build . en_default.sputnik" + - "%CMD_IN_ENV% sputnik install en_default.sputnik" test_script: # Run the project tests diff --git a/.travis.yml b/.travis.yml index 2a0295156..65171f169 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,8 +22,8 @@ install: - "cd ../../" - "export PYTHONPATH=`pwd`" - "python bin/init_model.py en lang_data/ corpora/ data" - - "sputnik build ." - - "sputnik install en_default-*.sputnik" + - "sputnik build . en_default.sputnik" + - "sputnik install en_default.sputnik" # run tests script: diff --git a/requirements.txt b/requirements.txt index ccf78f379..ef73a19d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,4 +10,4 @@ plac six ujson cloudpickle -sputnik == 0.6.2 +sputnik == 0.6.3 diff --git a/setup.py b/setup.py index 3941a80ca..72ee3d28b 100644 --- a/setup.py +++ b/setup.py @@ -179,7 +179,7 @@ def run_setup(exts): license="MIT", install_requires=['numpy', 'murmurhash == 0.24', 'cymem == 1.30', 'preshed == 0.44', 'thinc == 4.0.0', "text_unidecode", 'plac', 'six', - 'ujson', 'cloudpickle', 'sputnik == 0.6.2'], + 'ujson', 'cloudpickle', 'sputnik == 0.6.3'], setup_requires=["headers_workaround"], cmdclass = {'build_ext': build_ext_subclass }, )