From c610dabb58ac0b214e1f23f3c5cb672600469263 Mon Sep 17 00:00:00 2001 From: Lukas Heumos Date: Sat, 9 Oct 2021 18:39:29 +0200 Subject: [PATCH 1/2] Increase spacy maximum version fixes #145 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0acdc8747..cf55a6dfd 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'numpy<1.21.0,>=1.19.0', 'pandas~=1.0', 'gensim~=3.8', - 'spacy<3.1.0,>=3.0.1', + 'spacy<3.1.3,>=3.0.1', 'scipy~=1.5', 'transformers~=4.10.0', 'torch~=1.8.1', From ac3452d2070032c6d25a989efcfa6b5c38d65926 Mon Sep 17 00:00:00 2001 From: Lukas Heumos Date: Sat, 9 Oct 2021 22:20:50 +0200 Subject: [PATCH 2/2] Increase max spacy version to 3.1.4 Finally resolves building with typer 0.4 and therefore click 8.x --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf55a6dfd..221f035a0 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'numpy<1.21.0,>=1.19.0', 'pandas~=1.0', 'gensim~=3.8', - 'spacy<3.1.3,>=3.0.1', + 'spacy<3.1.4,>=3.0.1', 'scipy~=1.5', 'transformers~=4.10.0', 'torch~=1.8.1',