This is an automated email from the ASF dual-hosted git repository.
zhongjiajie pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/dolphinscheduler-sdk-python.git
The following commit(s) were added to refs/heads/main by this push:
new a50e8ad Add new release for 3.2.x dolphinscheduler support (#160)
a50e8ad is described below
commit a50e8ade9e46633ccc3dfd51e7db6757c903f74c
Author: Jay Chung <[email protected]>
AuthorDate: Sun Jan 12 17:08:17 2025 +0800
Add new release for 3.2.x dolphinscheduler support (#160)
* Add new release for 3.2.x dolphinscheduler support
* Remove out-of-date syntax
* mark codecov/codecov-action is optional
---
.github/workflows/ci.yaml | 2 +-
docs/source/index.rst | 2 ++
setup.py | 6 ------
src/pydolphinscheduler/version_ext | 2 +-
4 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 0f74fdf..f6960a6 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -123,7 +123,7 @@ jobs:
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
- fail_ci_if_error: true
+ fail_ci_if_error: false
verbose: true
doc-build:
timeout-minutes: 15
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 387224a..a5921a8 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -88,6 +88,8 @@ use PyDolphinScheduler above version 4.0.0.
+--------------------------+----------------------------+---------------------+
| >=3.1.5, <3.2.0 | >=4.0.4, <4.1.0 | |
+--------------------------+----------------------------+---------------------+
+| >=3.2.0, <3.3.0 | >=4.1.0, <4.2.0 | |
++--------------------------+----------------------------+---------------------+
Content
diff --git a/setup.py b/setup.py
index 7637a9c..dcc83db 100644
--- a/setup.py
+++ b/setup.py
@@ -20,18 +20,12 @@ from __future__ import annotations
import logging
import os
-import sys
from distutils.command.sdist import sdist
from distutils.dir_util import remove_tree
from distutils.errors import DistutilsExecError
from setuptools import Command, setup
-if sys.version_info[0] < 3:
- raise Exception(
- "pydolphinscheduler does not support Python 2. Please upgrade to
Python 3."
- )
-
logger = logging.getLogger(__name__)
diff --git a/src/pydolphinscheduler/version_ext
b/src/pydolphinscheduler/version_ext
index 1983d1a..e8a4a15 100644
--- a/src/pydolphinscheduler/version_ext
+++ b/src/pydolphinscheduler/version_ext
@@ -1 +1 @@
-dolphinscheduler>=3.2.0
\ No newline at end of file
+dolphinscheduler>=3.2.0,<3.3.0
\ No newline at end of file