From 26e590a05784626d635eb0a178dc7af92082302c Mon Sep 17 00:00:00 2001 From: "ryuta.seto" Date: Tue, 5 Apr 2022 21:25:15 +0900 Subject: [PATCH] removed python 3.10 build step for mac/win added python3.9 build step for linux --- .github/workflows/actions/entrypoint.sh | 2 +- .github/workflows/build_mac.yml | 2 +- .github/workflows/build_win.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions/entrypoint.sh b/.github/workflows/actions/entrypoint.sh index dbc59c1..ac19a3c 100755 --- a/.github/workflows/actions/entrypoint.sh +++ b/.github/workflows/actions/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh -PYTHONS=("cp36-cp36m" "cp37-cp37m" "cp38-cp38") +PYTHONS=("cp36-cp36m" "cp37-cp37m" "cp38-cp38", "cp39-cp39") for PYTHON in ${PYTHONS[@]}; do /opt/python/${PYTHON}/bin/pip install --upgrade pip diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml index 64af800..e8da1b5 100644 --- a/.github/workflows/build_mac.yml +++ b/.github/workflows/build_mac.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [macos-10.15] architecture: [x64] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/build_win.yml b/.github/workflows/build_win.yml index 1256b1f..dd34bb6 100644 --- a/.github/workflows/build_win.yml +++ b/.github/workflows/build_win.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [windows-2019] architecture: [x64, x86] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2