From 5e1e2497abd92ac18caf4e6f7ec439dbe59aaf2a Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Thu, 15 Aug 2024 01:32:33 -0700 Subject: [PATCH] Enable Python 3.13 experimental --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 188200ef..84b0108d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,8 +19,10 @@ jobs: test_linux: name: Test ${{ matrix.os }} with Python ${{ matrix.python }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.experimental }} strategy: matrix: + experimental: [false] include: - os: ubuntu-22.04 python: "3.10" @@ -34,6 +36,9 @@ jobs: tesseract5: true - os: ubuntu-latest python: "pypy3.10" + - os: ubuntu-22.04 + python: "3.13" + experimental: true env: OS: ${{ matrix.os }} @@ -49,6 +54,7 @@ jobs: with: python-version: ${{ matrix.python }} cache: "pip" + allow-prereleases: ${{ matrix.experimental }} - name: Install Tesseract 5 if: matrix.tesseract5