diff --git a/__init__.py b/__init__.py index 6a805f1..bb9f693 100644 --- a/__init__.py +++ b/__init__.py @@ -65,7 +65,7 @@ def cli_main(self, argv): log.prints( Log.WARNING, f"Book language {lang} is not supported for Word Wise gloss" - "language {gloss_lang}", + f"language {gloss_lang}", ) if create_w is False and create_x is False: continue diff --git a/data/deps.json b/data/deps.json index 246a325..5401f52 100644 --- a/data/deps.json +++ b/data/deps.json @@ -1,7 +1,7 @@ { "cupy": "12.2.0", "lxml": "4.9.3", - "rapidfuzz": "3.3.1", + "rapidfuzz": "3.4.0", "spacy_cpu_model": "3.7.0", "spacy_trf_model": "3.7.2", "thinc-apple-ops": "0.1.4", diff --git a/data/languages.json b/data/languages.json index 0e12853..90ecb70 100644 --- a/data/languages.json +++ b/data/languages.json @@ -91,7 +91,7 @@ }, "fr": { "639-2": "fra", - "gloss_source": "dbnary", + "gloss_source": "kaikki", "has_trf": false, "lemma_languages": [ "ca", diff --git a/utils.py b/utils.py index f31e771..a3a5739 100644 --- a/utils.py +++ b/utils.py @@ -11,7 +11,7 @@ from typing import Any, TypedDict CJK_LANGS = ["zh", "ja", "ko"] -PROFICIENCY_VERSION = "0.5.10" +PROFICIENCY_VERSION = "0.5.11" PROFICIENCY_RELEASE_URL = ( f"https://github.com/xxyzz/Proficiency/releases/download/v{PROFICIENCY_VERSION}" )