From 4df1d2c628554cbd37f4983ea0f47aeed5638c33 Mon Sep 17 00:00:00 2001 From: scivision Date: Wed, 8 Jan 2025 00:49:25 -0500 Subject: [PATCH] ci: also test Python 3.13 --- .github/workflows/ci.yml | 11 ++++++----- .github/workflows/ci_stdlib_only.yml | 6 +++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de62a82..a33879a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,13 +15,13 @@ jobs: name: ${{ matrix.os }} Python ${{ matrix.python-version }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] os: [ubuntu-latest] include: - os: macos-latest - python-version: '3.12' + python-version: '3.13' - os: windows-latest - python-version: '3.12' + python-version: '3.13' steps: - uses: actions/checkout@v4 @@ -38,13 +38,14 @@ jobs: - run: pytest + coverage: runs-on: ubuntu-latest - name: Python ${{ matrix.python-version }} + name: Coverage Python ${{ matrix.python-version }} strategy: matrix: - python-version: ["3.12"] + python-version: ["3.13"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci_stdlib_only.yml b/.github/workflows/ci_stdlib_only.yml index 1219284..490fa21 100644 --- a/.github/workflows/ci_stdlib_only.yml +++ b/.github/workflows/ci_stdlib_only.yml @@ -15,13 +15,13 @@ jobs: name: ${{ matrix.os }} Python ${{ matrix.python-version }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] os: ['ubuntu-latest'] include: - os: macos-latest - python-version: '3.12' + python-version: '3.13' - os: windows-latest - python-version: '3.12' + python-version: '3.13' steps: - uses: actions/checkout@v4