From 0ff6ddfbfb24d52353c6f9d7f855609c84ca43c8 Mon Sep 17 00:00:00 2001 From: Ailing Zhang Date: Tue, 22 Feb 2022 15:57:44 +0800 Subject: [PATCH] py39 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 066ef193c..8f335d0ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,11 +47,11 @@ jobs: - id: set-matrix run: | if [ -z "${{ github.event.action }}" ]; then - # For nightly release, we only run on python 3.8 - echo '::set-output name=matrix::{"include":[{"name":"taichi-nightly","python":"3.8","conda_python":"py38"}]}"' + # For nightly release, we only run on python 3.9 + echo '::set-output name=matrix::{"include":[{"name":"taichi-nightly","python":"3.9","conda_python":"py39"}]}"' # M1 only supports py38 and py39(conda), so change matrix. - echo '::set-output name=matrix_osx::{"include":[{"name":"taichi-nightly","python":"3.8"}]}"' + echo '::set-output name=matrix_osx::{"include":[{"name":"taichi-nightly","python":"3.9"}]}"' else # For production release, we run on four python versions. echo '::set-output name=matrix::{"include":[{"name":"taichi","python":"3.6","conda_python":"py36"},{"name":"taichi","python":"3.7","conda_python":"py37"},{"name":"taichi","python":"3.8","conda_python":"py38"},{"name":"taichi","python":"3.9","conda_python":"py39"}]}"'