From 7c060b6cec122a79027e0716b2de26f23edf0107 Mon Sep 17 00:00:00 2001 From: Teddy Roy Date: Mon, 20 Jul 2026 12:37:41 +0200 Subject: [PATCH] Adds supported Python versions 3.13, 3.14 --- gutenberg/CHANGELOG.md | 4 ++++ gutenberg/code-env/python/desc.json | 13 +++++++++++-- gutenberg/plugin.json | 29 ++++++++++++++++------------- 3 files changed, 31 insertions(+), 15 deletions(-) diff --git a/gutenberg/CHANGELOG.md b/gutenberg/CHANGELOG.md index a1d346da..b8c055d2 100644 --- a/gutenberg/CHANGELOG.md +++ b/gutenberg/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 1.2.0 - Enhancement release - 2026-07-20 + +- Added supported Python versions: 3.13, 3.14 + ## Version 1.1.2 - Feature release - 2025-05-26 - Removed Python2.7 support diff --git a/gutenberg/code-env/python/desc.json b/gutenberg/code-env/python/desc.json index 643daa67..e6371b97 100644 --- a/gutenberg/code-env/python/desc.json +++ b/gutenberg/code-env/python/desc.json @@ -1,7 +1,16 @@ { - "acceptedPythonInterpreters": ["PYTHON36", "PYTHON37", "PYTHON39", "PYTHON310", "PYTHON311", "PYTHON312"], + "acceptedPythonInterpreters": [ + "PYTHON36", + "PYTHON37", + "PYTHON39", + "PYTHON310", + "PYTHON311", + "PYTHON312", + "PYTHON313", + "PYTHON314" + ], "forceConda": false, "installCorePackages": true, "installJupyterSupport": false, "corePackagesSet": "AUTO" -} \ No newline at end of file +} diff --git a/gutenberg/plugin.json b/gutenberg/plugin.json index 7c897ed6..38c9cbe0 100644 --- a/gutenberg/plugin.json +++ b/gutenberg/plugin.json @@ -1,15 +1,18 @@ { - "id": "gutenberg", - "version": "1.1.2", - "meta": { - "label": "Project Gutenberg", - "category": "Natural Language Processing", - "description": "Download books from Project Gutenberg (https://www.gutenberg.org)", - "author": "Dataiku (Hanna Julienne)", - "icon": "icon-book", - "licenseInfo": "Apache Software License", - "url": "https://www.dataiku.com/product/plugins/gutenberg/", - "tags": ["Open Data", "NLP"], - "supportLevel": "NOT_SUPPORTED" - } + "id": "gutenberg", + "version": "1.2.0", + "meta": { + "label": "Project Gutenberg", + "category": "Natural Language Processing", + "description": "Download books from Project Gutenberg (https://www.gutenberg.org)", + "author": "Dataiku (Hanna Julienne)", + "icon": "icon-book", + "licenseInfo": "Apache Software License", + "url": "https://www.dataiku.com/product/plugins/gutenberg/", + "tags": [ + "Open Data", + "NLP" + ], + "supportLevel": "NOT_SUPPORTED" + } }