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 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"