From aa05bef7be1fed968d5ee8e1c3ff2b256d9c2436 Mon Sep 17 00:00:00 2001 From: David Hotham Date: Mon, 1 Jul 2024 20:46:50 +0100 Subject: [PATCH] python 3.13 in workflows --- .github/workflows/tests.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 42a7b9a56..8bbf31625 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,8 +14,17 @@ jobs: runs-on: "${{ matrix.os }}-latest" strategy: matrix: - os: [Ubuntu, MacOS, Windows] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + os: + - Ubuntu + - MacOS + - Windows + python-version: + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" + - "3.13" include: - os: Ubuntu python-version: pypy-3.8 @@ -30,6 +39,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Get full Python version id: full-python-version