From a89a9af63ea7a28e4720a86d8cd54b2ee782cbd1 Mon Sep 17 00:00:00 2001 From: Richard Xia Date: Wed, 19 Jul 2023 20:40:22 -0700 Subject: [PATCH] Drop unsupported Python versions from CI; add new stable versions. This drops Python 3.5, 3.6, and 3.7 from the CI workflows, since they are all EOL. It adds 3.9, 3.10, and 3.11 as new versions we test against. Signed-off-by: Richard Xia --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8701889..7500dee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v1