Skip to content

Support Python 3.13 #60

Support Python 3.13

Support Python 3.13 #60

Workflow file for this run

name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
# https://github.com/actions/setup-python/blob/v4.8.0/src/find-python.ts#L162-L166
# - "3.14-dev"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup
run: make setup
- name: Test
run: make test