From d74870d38cec6c2bf0562f38a32b3ed4716ef4a9 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 14 Sep 2021 11:03:51 +0200 Subject: [PATCH] Prepare for v3.1.3 (#9200) * Update thinc and spacy-legacy requirements * Set version to v3.1.3 --- pyproject.toml | 2 +- requirements.txt | 4 ++-- setup.cfg | 4 ++-- spacy/about.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9dd640185..7328cd6c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = [ "cymem>=2.0.2,<2.1.0", "preshed>=3.0.2,<3.1.0", "murmurhash>=0.28.0,<1.1.0", - "thinc>=8.0.9,<8.1.0", + "thinc>=8.0.10,<8.1.0", "blis>=0.4.0,<0.8.0", "pathy", "numpy>=1.15.0", diff --git a/requirements.txt b/requirements.txt index eea9dc21d..12fdf650f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ # Our libraries -spacy-legacy>=3.0.7,<3.1.0 +spacy-legacy>=3.0.8,<3.1.0 cymem>=2.0.2,<2.1.0 preshed>=3.0.2,<3.1.0 -thinc>=8.0.9,<8.1.0 +thinc>=8.0.10,<8.1.0 blis>=0.4.0,<0.8.0 ml_datasets>=0.2.0,<0.3.0 murmurhash>=0.28.0,<1.1.0 diff --git a/setup.cfg b/setup.cfg index 2708bac75..ff12d511a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,10 +37,10 @@ setup_requires = cymem>=2.0.2,<2.1.0 preshed>=3.0.2,<3.1.0 murmurhash>=0.28.0,<1.1.0 - thinc>=8.0.9,<8.1.0 + thinc>=8.0.10,<8.1.0 install_requires = # Our libraries - spacy-legacy>=3.0.7,<3.1.0 + spacy-legacy>=3.0.8,<3.1.0 murmurhash>=0.28.0,<1.1.0 cymem>=2.0.2,<2.1.0 preshed>=3.0.2,<3.1.0 diff --git a/spacy/about.py b/spacy/about.py index 85b579f95..3137be806 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -1,6 +1,6 @@ # fmt: off __title__ = "spacy" -__version__ = "3.1.2" +__version__ = "3.1.3" __download_url__ = "https://github.com/explosion/spacy-models/releases/download" __compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json" __projects__ = "https://github.com/explosion/projects"