This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch enable_py3.6 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 00722917715eb5165325ce18d223a2ac23659476 Author: HTHou <[email protected]> AuthorDate: Mon Jun 24 11:51:53 2024 +0800 Enable python 3.6 CI --- .github/workflows/multi-language-client.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/multi-language-client.yml b/.github/workflows/multi-language-client.yml index b66fa4ed9f5..c729e751f5f 100644 --- a/.github/workflows/multi-language-client.yml +++ b/.github/workflows/multi-language-client.yml @@ -103,6 +103,11 @@ jobs: make e2e_test_for_parent_git_repo e2e_test_clean_for_parent_git_repo python: + strategy: + fail-fast: false + max-parallel: 15 + matrix: + python: ['3.6', '3.x'] runs-on: ubuntu-latest steps: @@ -119,6 +124,9 @@ jobs: run: | docker build . -f docker/src/main/Dockerfile-1c1d -t "iotdb:dev" docker images + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python }} - name: Install IoTDB python client requirements run: pip3 install -r iotdb-client/client-py/requirements_dev.txt - name: Check code style
