From 8bb271a798852b2429ff895cc4cc11c8caca34e0 Mon Sep 17 00:00:00 2001 From: Mark Bird Date: Wed, 25 Feb 2026 09:38:44 +0000 Subject: [PATCH] Add Django 5.2 and 6.0 to test matrix, remove Python 3.8 and 3.9 --- .github/workflows/ci.yml | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 464ee5b..ff5755e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,28 +4,31 @@ on: [pull_request] jobs: build: - runs-on: ubuntu-latest strategy: matrix: - python: ["3.8", "3.9", "3.10", "3.11"] - django: ["3.2", "4.0", "4.1", "4.2"] + python: ["3.10", "3.11", "3.12", "3.13", "3.14"] + django: ["4.2", "5.2", "6.0"] exclude: + - python: "3.13" + django: "4.2" + - python: "3.14" + django: "4.2" + - python: "3.10" + django: "6.0" - python: "3.11" - django: "3.2" - - python: "3.11" - django: "4.0" + django: "6.0" steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python }} - - name: Install Django - run: pip install -U django==${{ matrix.django }} - - name: Run tests - run: ./manage.py test - - name: Check install - run: pip install . + - uses: actions/checkout@v6 + - name: Set up Python ${{ matrix.python }} + uses: actions/setup-python@v6 + with: + python-version: ${{ matrix.python }} + - name: Install Django + run: pip install -U django==${{ matrix.django }} + - name: Run tests + run: ./manage.py test + - name: Check install + run: pip install .