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 fa57d68  chore: CI error due to version dev (#70)
fa57d68 is described below

commit fa57d68e87a0f2454a68a89283e787c615d54402
Author: Jay Chung <[email protected]>
AuthorDate: Tue Feb 7 19:43:17 2023 +0800

    chore: CI error due to version dev (#70)
    
    according to https://github.com/pypa/setuptools/issues/3772
---
 RELEASE.md                         | 2 +-
 setup.py                           | 2 +-
 src/pydolphinscheduler/__init__.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/RELEASE.md b/RELEASE.md
index 62aad00..e72d3d9 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -53,7 +53,7 @@ git tag -a "${VERSION}" -m "Release v${VERSION}"
 git push "${REMOTE}" --tags
 
 # Build and sign according to the Apache requirements
-python setup.py clean && python setup.py sdist
+python setup.py clean && python setup.py asdist
 ```
 
 ## Create Draft Release
diff --git a/setup.py b/setup.py
index cdfb416..7a75bc8 100644
--- a/setup.py
+++ b/setup.py
@@ -90,6 +90,6 @@ class ApacheRelease(sdist):
 setup(
     cmdclass={
         "clean": CleanCommand,
-        "sdist": ApacheRelease,
+        "asdist": ApacheRelease,
     },
 )
diff --git a/src/pydolphinscheduler/__init__.py 
b/src/pydolphinscheduler/__init__.py
index b285d5a..db9ff5f 100644
--- a/src/pydolphinscheduler/__init__.py
+++ b/src/pydolphinscheduler/__init__.py
@@ -17,4 +17,4 @@
 
 """Init root of pydolphinscheduler."""
 
-__version__ = "dev"
+__version__ = "4.0.2-dev"

Reply via email to