From 0d21ddcda86e7196a06f1ded1a25dbaa3a7ddd98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Alemany=20Puig?= Date: Mon, 30 Sep 2024 11:05:49 +0200 Subject: [PATCH] Updated LAL's required version --- treebank_parser/version_lal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/treebank_parser/version_lal.py b/treebank_parser/version_lal.py index 4fb93c2..2f76c66 100644 --- a/treebank_parser/version_lal.py +++ b/treebank_parser/version_lal.py @@ -33,6 +33,6 @@ ################################################################################ def is_version_of_LAL_correct(lal): - if lal.version.major != '99.99': - return (False, f"LAL version {lal.version.major} is not compatible with the development branch of treebank-parser. The development branch of treebank-parser needs LAL (development) 99.99.") + if lal.version.major != '24.10': + return (False, f"LAL version {lal.version.major} is not compatible with version 24.10 of treebank-parser. This version needs LAL 24.10.") return (True, "")