diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 4e5a373..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.8 + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/README.md b/README.md index c373fc1..fd8f44c 100644 --- a/README.md +++ b/README.md @@ -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. --- diff --git a/pyproject.toml b/pyproject.toml index 77c080b..8813d11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" ]