From 5953d4008c31a07c483f311eeedf6646731ac3c3 Mon Sep 17 00:00:00 2001 From: Albert Villanova del Moral <8515462+albertvillanova@users.noreply.github.com> Date: Wed, 11 Sep 2024 09:41:10 +0200 Subject: [PATCH] Fix CI with temporary pin nltk<3.9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6e47429d..2dab0daf 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ "absl-py", "charcut>=1.1.1", # for charcut_mt "cer>=1.2.0", # for characTER - "nltk", # for NIST and probably others + "nltk<3.9", # for NIST and probably others; temporarily pin < 3.9 to avoid "Resource punkt_tab not found" (GH-622) "pytest", "pytest-datadir", "pytest-xdist",