Skip to content

Update setup.cfg for supported python versions #39

Update setup.cfg for supported python versions

Update setup.cfg for supported python versions #39

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: run tests
run: |
pip install --upgrade pip
pip install --upgrade setuptools setuptools_scm pep517
pip install .[tests]
pytest -vv