From 4241d478744ed6e175f0e5414f123b1eab164926 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 14 Mar 2024 18:47:11 -0700 Subject: [PATCH] Test against Python 3.13 pre-release --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9224d82..50222c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ${{ matrix.os }} 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"] numpy: [0, 1] os: [ubuntu-latest, macos-latest, windows-latest, macos-14] # Skip 3.8 and 3.9 on macos-14 - it only has 3.10+ @@ -25,6 +25,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - uses: actions/cache@v4 name: Configure pip caching with: