From 025c8209767430a98e6a212521bb9c65e0195006 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 7 Nov 2017 11:50:43 +0100 Subject: [PATCH 1/3] Increment version to 1.10.0 --- spacy/about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/about.py b/spacy/about.py index d34c6f948..a1544138c 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -3,7 +3,7 @@ # https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py __title__ = 'spacy' -__version__ = '1.9.0' +__version__ = '1.10.0' __summary__ = 'Industrial-strength Natural Language Processing (NLP) with Python and Cython' __uri__ = 'https://spacy.io' __author__ = 'Matthew Honnibal' From cc256e9c8867641b53c2b11eb6596c3e286f58c1 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 7 Nov 2017 11:57:09 +0100 Subject: [PATCH 2/3] Add buildkite trigger to 1.x --- .buildkite/sdist.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .buildkite/sdist.yml diff --git a/.buildkite/sdist.yml b/.buildkite/sdist.yml new file mode 100644 index 000000000..77dcc075e --- /dev/null +++ b/.buildkite/sdist.yml @@ -0,0 +1,5 @@ +steps: + - + command: "fab env clean make test sdist" + label: ":dizzy: :python:" + artifact_paths: "dist/*.tar.gz" From 04af13e29a1fbad38fb453fb39b6b10ac0804cd5 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 7 Nov 2017 12:11:08 +0100 Subject: [PATCH 3/3] Update fabfile from develop --- fabfile.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fabfile.py b/fabfile.py index cfa80ead5..2894fe477 100644 --- a/fabfile.py +++ b/fabfile.py @@ -14,6 +14,7 @@ VENV_DIR = path.join(PWD, ENV) def env(lang='python2.7'): if path.exists(VENV_DIR): local('rm -rf {env}'.format(env=VENV_DIR)) + local('pip install virtualenv') local('python -m virtualenv -p {lang} {env}'.format(lang=lang, env=VENV_DIR)) @@ -32,6 +33,10 @@ def make(): local('pip install -r requirements.txt') local('python setup.py build_ext --inplace') +def sdist(): + with virtualenv(VENV_DIR): + with lcd(path.dirname(__file__)): + local('python setup.py sdist') def clean(): with lcd(path.dirname(__file__)):