From 27fc4871e9f75b44712f519f4baa520427c2788e Mon Sep 17 00:00:00 2001 From: Alexandre Muller Date: Wed, 20 Dec 2023 16:02:00 +0100 Subject: [PATCH] setup: add support for Django 4.1 and 4.2 --- .travis.yml | 2 ++ dev_requirements.txt | 2 +- setup.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d6646e9..fc61dbf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ python: env: matrix: - DJANGO_VERSION=3.2 + - DJANGO_VERSION=4.1 + - DJANGO_VERSION=4.2 install: - pip install coverage # coverage>=4 has issues with python3 - pip install -q Django==$DJANGO_VERSION coveralls diff --git a/dev_requirements.txt b/dev_requirements.txt index b6e27f7..ce0fa30 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -1,2 +1,2 @@ -Django<3.3 +Django<4.3 django_testproject diff --git a/setup.py b/setup.py index 2144b7c..1e65c2b 100755 --- a/setup.py +++ b/setup.py @@ -67,6 +67,8 @@ classifiers=[ "Development Status :: 4 - Beta", "Framework :: Django :: 3.2", + "Framework :: Django :: 4.1", + "Framework :: Django :: 4.2", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers",