From 9dcba4b9997ea94c1c10a3e6ebccecfe3e544a90 Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Fri, 22 Nov 2024 15:31:02 +0100 Subject: [PATCH] Add Python 3.13 support (#84) --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba5c986..ca30b98 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,10 +16,10 @@ jobs: - name: Check out the repository uses: actions/checkout@v4.2.2 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5.3.0 with: - python-version: "3.12" + python-version: "3.13" - name: Install dependencies run: | @@ -41,7 +41,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - name: Check out the repository @@ -74,10 +74,10 @@ jobs: - name: Check out the repository uses: actions/checkout@v4.2.2 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5.3.0 with: - python-version: "3.12" + python-version: "3.13" - name: Install dependencies run: |