From 7603d35b0197160fcf50a4be44c5b3d8b1a28fd2 Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Mon, 24 Jun 2024 10:14:32 +0000 Subject: [PATCH] CI: remove 2.7 support to fix build See https://github.com/actions/setup-python/issues/672 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a468f1..9790ca3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2