From 03bee625685100b70dd9437b649eac26c3f51349 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 29 Mar 2022 11:15:24 +0200 Subject: [PATCH 1/2] Add click pin to avoid typer issues (#10573) --- requirements.txt | 1 + setup.cfg | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index ca4099be5bc..616e793e905 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,6 +11,7 @@ wasabi>=0.8.1,<1.1.0 srsly>=2.4.1,<3.0.0 catalogue>=2.0.6,<2.1.0 typer>=0.3.0,<0.5.0 +click<8.1.0 pathy>=0.3.5 # Third party dependencies numpy>=1.15.0 diff --git a/setup.cfg b/setup.cfg index 586a044fff0..2d446e44269 100644 --- a/setup.cfg +++ b/setup.cfg @@ -52,6 +52,7 @@ install_requires = srsly>=2.4.1,<3.0.0 catalogue>=2.0.6,<2.1.0 typer>=0.3.0,<0.5.0 + click<8.1.0 pathy>=0.3.5 # Third-party dependencies tqdm>=4.38.0,<5.0.0 From 259ad994e2f524fec3c283659156f14c87c886ad Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 29 Mar 2022 14:59:29 +0200 Subject: [PATCH 2/2] Set version to v3.2.4 --- spacy/about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/about.py b/spacy/about.py index 1d7caeb03ba..a04f7180c4d 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -1,6 +1,6 @@ # fmt: off __title__ = "spacy" -__version__ = "3.2.3" +__version__ = "3.2.4" __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"