From b2e38422a421694ed4c7bc704b272f44938571fa Mon Sep 17 00:00:00 2001 From: Balaji Venkatesan Date: Tue, 24 Feb 2026 09:39:53 +0530 Subject: [PATCH 1/4] S-129525 Updated for Release version 26.1.0 --- README.md | 6 ++++-- pyproject.toml | 17 ++++++++--------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c373fc1..81cb10d 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,13 @@ class Hello(BaseTask): ## Changelog -### Version 26.1.0 +### Version 26.1.0b1 #### 🛠️ Enhancements -- **Added support** for skipping SSL verification in legacy clusters. +- Updated minimum Python version requirement to **3.10**. +- Updated dependency versions to enhance compatibility and security. +- Added support for the **scriptLocation** hidden property to explicitly define the task script path, improving performance and file organization. --- diff --git a/pyproject.toml b/pyproject.toml index 77c080b..9cf941e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,30 +12,29 @@ packages = ["digitalai"] [project] name = "digitalai_release_sdk" -version = "26.1.0" +version = "26.1.0b1" authors = [ { name="Digital.ai", email="pypi-devops@digital.ai" }, ] description = "Digital.ai Release SDK" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" dependencies = [ - 'dataclasses-json>=0.6.7', - 'pycryptodomex>=3.21.0', - 'python-dateutil>=2.9.0', - 'requests>=2.32.3', - 'kubernetes>=32.0.1' + 'dataclasses-json>=0.6.7, <1.0.0', + 'pycryptodomex>=3.23.0, <4.0.0', + 'python-dateutil>=2.9.0, <3.0.0', + 'requests>=2.32.5, <3.0.0', + 'kubernetes>=35.0.0, <36.0.0' ] classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent" ] From aa483fccd3019d6ee70b5c780a2d64ebd0e184a2 Mon Sep 17 00:00:00 2001 From: Balaji Venkatesan Date: Tue, 24 Feb 2026 09:42:41 +0530 Subject: [PATCH 2/4] S-129525 Updated for Release version 26.1.0 --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 4e5a373..51ef91b 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.10 - name: Install dependencies run: | python -m pip install --upgrade pip From ee8915657c3d1911127c2a6e0c5a675b5762fbd1 Mon Sep 17 00:00:00 2001 From: Balaji Venkatesan Date: Tue, 24 Feb 2026 09:46:28 +0530 Subject: [PATCH 3/4] S-129525 Updated for Release version 26.1.0 --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 51ef91b..b4eb2dc 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.10 + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip From becda25ef347de1c0f55b1334d48c89ccca8da3a Mon Sep 17 00:00:00 2001 From: Balaji Venkatesan Date: Thu, 26 Feb 2026 11:21:46 +0530 Subject: [PATCH 4/4] Updated for 26.1.0 --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81cb10d..fd8f44c 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ class Hello(BaseTask): ## Changelog -### Version 26.1.0b1 +### Version 26.1.0 #### 🛠️ Enhancements diff --git a/pyproject.toml b/pyproject.toml index 9cf941e..8813d11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ packages = ["digitalai"] [project] name = "digitalai_release_sdk" -version = "26.1.0b1" +version = "26.1.0" authors = [ { name="Digital.ai", email="pypi-devops@digital.ai" }, ]