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 Aug 20, 2024
1 parent 561fda7 commit 5376482
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 5376482

Please sign in to comment.