Enable Python 3.13 experimental

This commit is contained in:
James R. Barlow 2024-08-15 01:32:33 -07:00
parent cd910fbf21
commit 5e1e2497ab
No known key found for this signature in database
GPG Key ID: E54A300D567E1260

View File

@ -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