From f83ff0f9d79b8bf2ddec6187893a79959db9d33c Mon Sep 17 00:00:00 2001 From: Chen Zhang Date: Mon, 30 Mar 2026 17:07:40 -0400 Subject: [PATCH] fix: update CI to modern actions and supported Python versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - actions/checkout v2 → v4 - actions/setup-python v2 → v5 - Python matrix: 3.6/3.7/3.8 → 3.10/3.11/3.12 (3.6 EOL Dec 2021, 3.7 EOL Jun 2023, no longer available on runners) Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/pytest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d12ef6b..7d6e459 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -18,15 +18,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ["3.10", "3.11", "3.12"] # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}