Skip to content

Add 3.13 support, remove 3.8 #72

Add 3.13 support, remove 3.8

Add 3.13 support, remove 3.8 #72

Workflow file for this run

name: Test
on: [pull_request]
jobs:
build:
name: Test on ${{ matrix.os }} / Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -U setuptools wheel
- name: Build package
run: python -m pip install .
- name: Run tests
run: python -m unittest -v