Skip to content

Python 3.13 support #222

Python 3.13 support

Python 3.13 support #222

Workflow file for this run

name: main
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pip install -Ur requirements.txt
- uses: pre-commit/[email protected]
tests:
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
include:
- {python: "3.7", os: "ubuntu-22.04"}
runs-on: ${{ matrix.os }}
name: tests (Python ${{ matrix.python }})
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
run: tox -e py