Skip to content

Update PyPI long_description to differ from README #213

Update PyPI long_description to differ from README

Update PyPI long_description to differ from README #213

Workflow file for this run

name: tests
on: [push, pull_request, workflow_dispatch]
jobs:
pre-commit:
name: Run pre-commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
python-version: ["3.10", "3.11", "3.12", "3.13"]
django-version: ["4.2", "5.0", "5.1", "5.2"]
exclude:
- python-version: "3.13"
django-version: "4.2"
- python-version: "3.13"
django-version: "5.0"
include:
- python-version: "3.9"
django-version: "4.2"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install django~=${{ matrix.django-version }}
pip install -e ".[dev]"
- name: Run tests
run: |
pytest --cov