From bb47ced47440c271f023ae6b4881bde5438dc620 Mon Sep 17 00:00:00 2001 From: Jiajie Zhong Date: Thu, 19 May 2022 20:27:38 +0800 Subject: [PATCH] [python] Change distribute name avoid confusion with main pkg (#10134) rename them and add `python` suffix in the end close: #9121 (cherry picked from commit bf4b8ff0d98990a46dbc7adac01164c515b13ad3) --- dolphinscheduler-python/pom.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dolphinscheduler-python/pom.xml b/dolphinscheduler-python/pom.xml index 749c767e87..1a740fbd9d 100644 --- a/dolphinscheduler-python/pom.xml +++ b/dolphinscheduler-python/pom.xml @@ -92,6 +92,37 @@ + + + python-pkg-rename-tar + prepare-package + + exec + + + bash + ${project.basedir}/pydolphinscheduler + + -c + mv dist/apache-dolphinscheduler-*.tar.gz dist/apache-dolphinscheduler-python-${project.version}.tar.gz + + + + + python-pkg-rename-whl + prepare-package + + exec + + + bash + ${project.basedir}/pydolphinscheduler + + -c + mv dist/apache_dolphinscheduler-*py3-none-any.whl dist/apache_dolphinscheduler-python-${project.version}-py3-none-any.whl + + + sign-source prepare-package