Skip to content

Add support for Django 5.1 and Python 3.13 #200

Add support for Django 5.1 and Python 3.13

Add support for Django 5.1 and Python 3.13 #200

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ '3.9', '3.10', '3.11', '3.12' ] # 3.13 is missing
name: python${{ matrix.python }}, django-${{ matrix.django }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py,lint