From ab816f6e2528be7af15920f1592cf3f8ec38c844 Mon Sep 17 00:00:00 2001 From: Jamie Matthews Date: Wed, 20 Jul 2022 08:28:03 +0100 Subject: [PATCH] Add Django 4.1rc1 to test matrix, remove Django 2.2 --- .github/workflows/ci.yml | 8 +++++--- README.md | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fff3033..cd5df36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,14 +10,16 @@ jobs: strategy: matrix: python: ["3.6", "3.7", "3.8", "3.9", "3.10"] - django: ["2.2", "3.2", "4.0"] + django: ["3.2", "4.0", "4.1rc1"] exclude: - python: "3.6" django: "4.0" - python: "3.7" django: "4.0" - - python: "3.10" - django: "2.2" + - python: "3.6" + django: "4.1rc1" + - python: "3.7" + django: "4.1rc1" steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index cb48417..5bae085 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ django-zen-queries Gives you control over which parts of your code are allowed to run queries, and which aren't. -Tested against Django 2.2, 3.2 and 4.0 on Python 3.6, 3.7, 3.8, 3.9 and 3.10. +Tested against Django 3.2, 4.0 and 4.1 on Python 3.6, 3.7, 3.8, 3.9 and 3.10. #### Testimonial diff --git a/setup.py b/setup.py index 696bfc1..f96e58e 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def get_package_data(package): package_data=get_package_data(package), python_requires=">=3.6", install_requires=[ - "Django>=2.2", + "Django>=3.2", ], project_urls={ "Changelog": "https://github.com/dabapps/django-zen-queries/releases",