From 1eda6ea9b4cc8644aa2db3b19db20b6c79ec0ef5 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 8 Jul 2024 16:05:08 +0200 Subject: [PATCH] CI: Add test job for Python 3.13 Python 3.13 is now in beta, thus is might be useful to start testing what works and what doesn't. This PR adds a Python 3.13 job on Ubuntu. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 919a7f5d0..92086e929 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,8 @@ jobs: python-version: "3.12" pip-pre: "--pre" # Installs pre-release versions of pip dependencies name: "Pre-release dependencies" + - os: ubuntu-latest + python-version: "3.13" steps: - uses: actions/checkout@v4 @@ -37,6 +39,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - run: pip install uv - name: Install dependencies run: |