You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/11/25 10:45:05 UTC

[dolphinscheduler-sdk-python] branch main updated: [chore] CI python version form 3.11-dev to 3.11 (#31)

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 2dfbb9b  [chore] CI python version form 3.11-dev to 3.11 (#31)
2dfbb9b is described below

commit 2dfbb9b1582053a612ecc11f9fa373f11fe9cca6
Author: Jay Chung <zh...@gmail.com>
AuthorDate: Fri Nov 25 18:45:00 2022 +0800

    [chore] CI python version form 3.11-dev to 3.11 (#31)
    
    python 3.11 release at Oct. 24, 2022. see detail in
    https://www.python.org/downloads/release/python-3110/
---
 .github/workflows/ci.yaml | 4 ++--
 setup.py                  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index d754989..069e3a7 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -76,14 +76,14 @@ jobs:
       matrix:
         # YAML parse `3.10` to `3.1`, so we have to add quotes for `'3.10'`, see also:
         # https://github.com/actions/setup-python/issues/160#issuecomment-724485470
-        python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 3.11-dev]
+        python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
         os: [ubuntu-latest, macOS-latest, windows-latest]
         # Skip because dependence [py4j](https://pypi.org/project/py4j/) not work on those environments
         exclude:
           - os: windows-latest
             python-version: '3.10'
           - os: windows-latest
-            python-version: 3.11-dev
+            python-version: 3.11
     steps:
       - uses: actions/checkout@v3
       - name: Set up Python ${{ matrix.python-version }}
diff --git a/setup.py b/setup.py
index bf71d7d..85a45c0 100644
--- a/setup.py
+++ b/setup.py
@@ -141,8 +141,8 @@ setup(
         "taskflow",
     ],
     project_urls={
-        "Homepage": "https://dolphinscheduler.apache.org",
-        "Documentation": "https://dolphinscheduler.apache.org/python/dev/index.html",
+        "Homepage": "https://dolphinscheduler.apache.org/python/main/index.html",
+        "Documentation": "https://dolphinscheduler.apache.org/python/main/index.html",
         "Source": "https://github.com/apache/dolphinscheduler-sdk-python",
         "Issue Tracker": "https://github.com/apache/dolphinscheduler-sdk-python/issues",
         "Twitter": "https://twitter.com/dolphinschedule",