From 3c01c786b25d3b9f489b5fe98124c578b952ece0 Mon Sep 17 00:00:00 2001 From: Chibu Ichiban <67924419+thekidconnect@users.noreply.github.com> Date: Thu, 20 Nov 2025 11:55:52 -0800 Subject: [PATCH] Update Python versions in CI workflow --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0477d67..3cb78b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest] - python-version: [3.6, 3.7, 3.8] + python-version: [3.11, 3.12, 3.13] steps: - uses: actions/checkout@v2 @@ -28,14 +28,14 @@ jobs: python -m pip install -q --no-cache-dir --use-feature=2020-resolver -e .[complete] python -m pip list - name: Check MANIFEST - if: matrix.python-version == 3.8 && matrix.os == 'ubuntu-latest' + if: matrix.python-version == 3.11 && matrix.os == 'ubuntu-latest' run: | check-manifest - name: Test with pytest run: | python -m pytest -r sx - name: Report coverage with Codecov - if: github.event_name == 'push' && matrix.python-version == 3.8 && matrix.os == 'ubuntu-latest' + if: github.event_name == 'push' && matrix.python-version == 3.11 && matrix.os == 'ubuntu-latest' uses: codecov/codecov-action@v1 with: file: ./coverage.xml