From f34e1b4721485dd232188226aaca678231431ee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20P=C3=A4rsson?= Date: Sat, 8 Mar 2025 13:29:07 +0100 Subject: [PATCH 1/2] Add CPython 3.13 and PyPy 3.11 to versions on CI --- .github/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 560e979..40f8465 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,19 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9", "pypy3.10"] + python-version: + [ + 3.8, + 3.9, + "3.10", + "3.11", + "3.12", + "3.13", + "pypy3.8", + "pypy3.9", + "pypy3.10", + "pypy3.11", + ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} From 84373307e3002cd0c3c18b88075c00b91bc39c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20P=C3=A4rsson?= Date: Sat, 8 Mar 2025 13:31:19 +0100 Subject: [PATCH 2/2] style: Remove trailing whitespace --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40f8465..d389b21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: CI -on: +on: push: branches: - master