This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch python-version in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git
commit a27bc73da2de2ad57deb11f45f594ece3a147d0e Author: Jay Chung <[email protected]> AuthorDate: Tue Dec 26 09:01:48 2023 +0800 fix: Upgrade python version in CI --- .github/workflows/website.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index edde5fa9d0..ba0b3092e2 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -35,10 +35,10 @@ jobs: run: yarn && yarn build # Build Python API document: from https://github.com/apache/dolphinscheduler-sdk-python - - name: Set up Python 3.7 - uses: actions/setup-python@v2 + - name: Set up Python + uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.11 - name: Build Python Multiple Version Document working-directory: ${{ env.PYDS_HOME }} # rsync all files in directory docs/build/html/versions expect .doctrees have sensitive data, so we need to delete it
