From ab4f0373c3fcdae9078fa6c5013d5e32c5613c5e Mon Sep 17 00:00:00 2001 From: kemon Date: Thu, 20 Jul 2023 20:43:11 +0200 Subject: [PATCH] Exclude older Python versions to be compatible with Github Action runtime Ubuntu 22 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce2c5e2..5a64ad1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3