From e8271f48ccd97dc55d34628463100195cc074e38 Mon Sep 17 00:00:00 2001 From: Frank Dana Date: Sat, 15 Jun 2024 12:40:02 -0400 Subject: [PATCH] Update CI Python versions Python 3.7 is past end-of-life, and even 3.8 is pretty outdated. Switch to testing on 3.8 (oldest supported) and 3.12 (current release). --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 301ac18..d4160e4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.7, 3.8] + python-version: [3.8, 3.12] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -29,4 +29,4 @@ jobs: name: examples-and-tutorials path: | examples/ - tutorial/ \ No newline at end of file + tutorial/