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 jobs for the conda and regular Ubuntu pip jobs.
  • Loading branch information
EwoutH authored Jul 10, 2024
1 parent 89fd9ec commit 1027851
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: true
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
# test oldesst and newest libspatialindex versions
sidx-version: ['1.8.5', '2.0.0']
exclude:
Expand Down Expand Up @@ -63,14 +63,15 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Setup
run: |
sudo apt install libspatialindex-c6 python3-pip
Expand Down

0 comments on commit 1027851

Please sign in to comment.