From 7169812078c5904658b463365401272f30c6a2ab Mon Sep 17 00:00:00 2001 From: Jeong-Yoon Lee Date: Sat, 7 Dec 2024 14:16:43 -0800 Subject: [PATCH] Remove Python 3.7 and 3.8 from and add Python 3.12 to the build tests (#807) * Update python-test.yaml * removing 3.12 until relaxing the Cython dependency --- .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 cbd0356b..c699f8f2 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"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4