From 450838ea7ae601b3440547e22693442c87b8a474 Mon Sep 17 00:00:00 2001 From: Jeong-Yoon Lee Date: Fri, 8 Dec 2023 07:42:22 -0800 Subject: [PATCH] Remove Python 3.12 from the build tests in python-test.yaml Python 3.12 is not supported by Torch yet and it breaks the builds. --- .github/workflows/python-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yaml b/.github/workflows/python-test.yaml index 466b32b5..cbd0356b 100644 --- a/.github/workflows/python-test.yaml +++ b/.github/workflows/python-test.yaml @@ -10,7 +10,7 @@ jobs: # You can use PyPy versions in python-version. # For example, pypy3.10 matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4