From 619c5ae6a28f4115a5628a63c32f9e601109ccb6 Mon Sep 17 00:00:00 2001 From: c01o Date: Fri, 27 Oct 2023 07:18:46 +0900 Subject: [PATCH] Upgrade test python version `pyproject.toml` says the minimum requirement is python 3.9, no need to test on 3.7. Actually `setuptools 68.1.0+` requires `python 3.8+`. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 50680030..c2c3336a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04, macos-latest, windows-latest] - python: [3.7] + python: [3.9] steps: - uses: actions/checkout@v2