Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions gutenberg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 11 additions & 2 deletions gutenberg/code-env/python/desc.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
29 changes: 16 additions & 13 deletions gutenberg/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
}