From 551ece5ace3c2926c416d49c615e8a914feb15a8 Mon Sep 17 00:00:00 2001 From: Teddy Roy Date: Mon, 20 Jul 2026 12:04:55 +0200 Subject: [PATCH] Adds supported Python versions 3.13, 3.14 --- CHANGELOG.md | 4 ++++ code-env/python/desc.json | 13 +++++++++++-- plugin.json | 27 +++++++++++++++------------ 3 files changed, 30 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b7f6b1..1dcd435 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 1.6.0 - Enhancement release - 2026-07-20 + +- Added supported Python versions: 3.13, 3.14 + ## Next version - Improve autoscaler image version selection diff --git a/code-env/python/desc.json b/code-env/python/desc.json index 3f43322..fb7c3f9 100644 --- a/code-env/python/desc.json +++ b/code-env/python/desc.json @@ -1,7 +1,16 @@ { - "acceptedPythonInterpreters": ["PYTHON37", "PYTHON38", "PYTHON39", "PYTHON310", "PYTHON311", "PYTHON312"], + "acceptedPythonInterpreters": [ + "PYTHON37", + "PYTHON38", + "PYTHON39", + "PYTHON310", + "PYTHON311", + "PYTHON312", + "PYTHON313", + "PYTHON314" + ], "forceConda": false, "installCorePackages": true, "installJupyterSupport": false, "corePackagesSet": "AUTO" -} \ No newline at end of file +} diff --git a/plugin.json b/plugin.json index 6c92530..ca54116 100644 --- a/plugin.json +++ b/plugin.json @@ -1,14 +1,17 @@ { - "id": "eks-clusters", - "version": "1.5.0", - "meta": { - "label": "EKS clusters", - "description": "Interact with Amazon Elastic Kubernetes Service clusters", - "author": "Dataiku", - "icon": "icon-amazon-elastic-kubernetes icon-cloud", - "tags": ["Infra", "AWS"], - "url": "https://www.dataiku.com/dss/plugins/info/eks-clusters.html", - "licenseInfo": "Apache Software License", - "supportLevel": "TIER2_SUPPORT" - } + "id": "eks-clusters", + "version": "1.6.0", + "meta": { + "label": "EKS clusters", + "description": "Interact with Amazon Elastic Kubernetes Service clusters", + "author": "Dataiku", + "icon": "icon-amazon-elastic-kubernetes icon-cloud", + "tags": [ + "Infra", + "AWS" + ], + "url": "https://www.dataiku.com/dss/plugins/info/eks-clusters.html", + "licenseInfo": "Apache Software License", + "supportLevel": "TIER2_SUPPORT" + } }