From 0a5c31f1a63781208dc26b8332075f19fd1ffa77 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Sun, 16 Jul 2023 15:21:40 +0200 Subject: [PATCH] Remove Python 3.6 from the CI (#148) This version of Python is no longer supported on GitHub Actions, apparently. --- .github/workflows/tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b703a7f..c51d70a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,6 @@ jobs: strategy: matrix: python-version: - - "3.6" - "3.7" - "3.8" - "3.9" @@ -31,4 +30,4 @@ jobs: - name: Run tests run: coverage run -m pytest tests - name: Upload coverage - run: codecov \ No newline at end of file + run: codecov -- 2.47.3