Skip to content

Commit 2b9a157

Browse files
S-129525 Updated for Release version 26.1.0
* S-129525 Updated for Release version 26.1.0 * S-129525 Updated for Release version 26.1.0 * S-129525 Updated for Release version 26.1.0 * Updated for 26.1.0
1 parent 97a179b commit 2b9a157

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: 3.8
19+
python-version: '3.10'
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ class Hello(BaseTask):
4949

5050
#### 🛠️ Enhancements
5151

52-
- **Added support** for skipping SSL verification in legacy clusters.
52+
- Updated minimum Python version requirement to **3.10**.
53+
- Updated dependency versions to enhance compatibility and security.
54+
- Added support for the **scriptLocation** hidden property to explicitly define the task script path, improving performance and file organization.
5355

5456
---
5557

pyproject.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,23 @@ authors = [
1818
]
1919
description = "Digital.ai Release SDK"
2020
readme = "README.md"
21-
requires-python = ">=3.8"
21+
requires-python = ">=3.10"
2222
dependencies = [
23-
'dataclasses-json>=0.6.7',
24-
'pycryptodomex>=3.21.0',
25-
'python-dateutil>=2.9.0',
26-
'requests>=2.32.3',
27-
'kubernetes>=32.0.1'
23+
'dataclasses-json>=0.6.7, <1.0.0',
24+
'pycryptodomex>=3.23.0, <4.0.0',
25+
'python-dateutil>=2.9.0, <3.0.0',
26+
'requests>=2.32.5, <3.0.0',
27+
'kubernetes>=35.0.0, <36.0.0'
2828
]
2929
classifiers = [
3030
"Development Status :: 5 - Production/Stable",
3131
"Intended Audience :: Developers",
3232
"Topic :: Software Development :: Libraries",
3333
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3.8",
35-
"Programming Language :: Python :: 3.9",
3634
"Programming Language :: Python :: 3.10",
3735
"Programming Language :: Python :: 3.11",
3836
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3938
"License :: OSI Approved :: MIT License",
4039
"Operating System :: OS Independent"
4140
]

0 commit comments

Comments
 (0)