Skip to content

EOL: Drop support for Python 3.9 and below #309

EOL: Drop support for Python 3.9 and below

EOL: Drop support for Python 3.9 and below #309

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
tox:
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- run: pip install --upgrade pip
- run: pip install tox
- run: tox -e py