Skip to content

Commit

Permalink
CI: Add test job for Python 3.13
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EwoutH committed Jul 8, 2024
1 parent b2d86bf commit 809d79d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ 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
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- run: pip install uv
- name: Install dependencies
run: |
Expand Down

0 comments on commit 809d79d

Please sign in to comment.