Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ class Hello(BaseTask):

#### 🛠️ 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.

---

Expand Down
15 changes: 7 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,23 @@ authors = [
]
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"
]
Expand Down