From bd4a6647e3c05ae91bee453047a5943bf9dd3134 Mon Sep 17 00:00:00 2001 From: Nicolas Dalsass Date: Tue, 14 Jan 2025 12:04:19 +0100 Subject: [PATCH 1/4] Pin sudachipy for python 3.7 and 3.8 Sudachipy released on the 10th of january 2025 version 0.6.10, with no wheels for python3.8 and before : https://pypi.org/project/SudachiPy/0.6.10/#files --- code-env/python/spec/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code-env/python/spec/requirements.txt b/code-env/python/spec/requirements.txt index 83b6317..75d7711 100644 --- a/code-env/python/spec/requirements.txt +++ b/code-env/python/spec/requirements.txt @@ -14,4 +14,5 @@ wordcloud==1.9.3; python_version >= '3.9' fonttools==4.14.0 pathvalidate==2.3.0 fastcore==1.3.19 -sudachipy==0.6.0; python_version == '3.6' \ No newline at end of file +sudachipy==0.6.0; python_version == '3.6' +sudachipy<0.6.10; python_version >= '3.7' and python_version < '3.9' From 877c6341c5a1a126002ed43a67bec5f9cf088980 Mon Sep 17 00:00:00 2001 From: Nicolas Dalsass Date: Fri, 17 Jan 2025 10:32:33 +0100 Subject: [PATCH 2/4] Update plugin.json --- plugin.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.json b/plugin.json index 3201524..0c59dc7 100644 --- a/plugin.json +++ b/plugin.json @@ -1,11 +1,11 @@ { "id": "nlp-visualization", - "version": "1.1.1", + "version": "1.1.2", "meta": { "label": "Text Visualization", "category": "Natural Language Processing", "description": "Visualize text as word clouds in 59 languages", - "author": "Dataiku (Alex LANDEAU, Alex COMBESSIE)", + "author": "Dataiku (CaraML)", "icon": "icon-quote-left", "tags": [ "NLP" From c6dd005139276f6be72a4ad05a46210f5884c7e9 Mon Sep 17 00:00:00 2001 From: Nicolas Dalsass Date: Fri, 17 Jan 2025 10:33:27 +0100 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e71f909..d95fee6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog -## [Version 1.1.1](https://github.com/dataiku/dss-plugin-nlp-visualization/releases/tag/v1.1.1) - Emhancement release - 2024-06 +## [Version 1.1.2](https://github.com/dataiku/dss-plugin-nlp-visualization/releases/tag/v1.1.2) - Bugfix release - 2025-01 +- 🐍 Update required sudachipy version to maintain compatibility with python 3.7 and 3.8 + +## [Version 1.1.1](https://github.com/dataiku/dss-plugin-nlp-visualization/releases/tag/v1.1.1) - Bugfix release - 2024-06 - 🐍 Update required wordcloud version to prevent issue with pillow when running word cloud recipe ## [Version 1.1.0](https://github.com/dataiku/dss-plugin-nlp-visualization/releases/tag/v1.1.0) - Emhancement release - 2023-05 From 10f6bce884f72c371175e1c55d8baa1207b7ef83 Mon Sep 17 00:00:00 2001 From: Nicolas Dalsass Date: Fri, 17 Jan 2025 10:34:16 +0100 Subject: [PATCH 4/4] Different pinning for mac and linux --- code-env/python/spec/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code-env/python/spec/requirements.txt b/code-env/python/spec/requirements.txt index 75d7711..aa9b05b 100644 --- a/code-env/python/spec/requirements.txt +++ b/code-env/python/spec/requirements.txt @@ -15,4 +15,5 @@ fonttools==4.14.0 pathvalidate==2.3.0 fastcore==1.3.19 sudachipy==0.6.0; python_version == '3.6' -sudachipy<0.6.10; python_version >= '3.7' and python_version < '3.9' +sudachipy<0.6.10; python_version >= '3.7' and python_version < '3.9' and platform_system != "Darwin" +sudachipy<0.6.9; python_version >= '3.7' and python_version < '3.9' and platform_system == "Darwin"