From 46524cc2e2362db15e23a046fc2aac68d552a3af Mon Sep 17 00:00:00 2001 From: MaurizioPilia Date: Thu, 9 Oct 2025 12:30:22 +0200 Subject: [PATCH] Support new python and django versions --- .github/workflows/lint-and-test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index d23c565..afe19da 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -26,11 +26,11 @@ jobs: test: strategy: matrix: - python_version: ["3.10", 3.11, 3.12] - django_version: [3.2, 4.0, 4.1.0, 4.2.2, 5.0, 5.1.4] - exclude: - - python_version: 3.12 - django_version: 3.2 + python_version: ["3.10", 3.11, 3.12, 3.13, 3.14] + django_version: [4.2, 5.2, 6.0] +# exclude: +# - python_version: 3.12 +# django_version: 3.2 runs-on: ubuntu-latest steps: @@ -44,7 +44,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -q Django==${{ matrix.django_version }} + pip install -q Django~=${{ matrix.django_version }} pip install coverage pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi