From 22875971cb359a5e1d81a4e49777b930590419c4 Mon Sep 17 00:00:00 2001 From: Matthias Schoettle Date: Thu, 14 Mar 2024 10:45:42 -0400 Subject: [PATCH] Drop support for Django 3.2 --- .github/workflows/build.yml | 7 +------ easyaudit/__init__.py | 4 ---- setup.py | 3 +-- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5974de26..7e62f0ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,13 +10,8 @@ jobs: max-parallel: 4 matrix: python-version: [3.8, 3.9, '3.10', 3.11, 3.12] - django-version: [3.2, 4.1, 4.2, '5.0'] + django-version: [4.2, '5.0'] exclude: - # Django 3.2 only supports Python 3.6 to 3.10 - - python-version: 3.11 - django-version: 3.2 - - python-version: 3.12 - django-version: 3.2 # Django 5.0 only supports Python 3.10 to 3.12 - python-version: 3.8 django-version: 5.0 diff --git a/easyaudit/__init__.py b/easyaudit/__init__.py index d3de5437..e69de29b 100644 --- a/easyaudit/__init__.py +++ b/easyaudit/__init__.py @@ -1,4 +0,0 @@ -import django - -if django.VERSION < (3, 2): - default_app_config = 'easyaudit.apps.EasyAuditConfig' diff --git a/setup.py b/setup.py index c21ded52..a9584015 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ include_package_data=True, install_requires=[ "beautifulsoup4", - "django>=3.2" + "django>=4.2" ], python_requires=">=3.8", license='GPL3', @@ -27,7 +27,6 @@ classifiers=[ 'Environment :: Plugins', 'Framework :: Django', - "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", "Framework :: Django :: 4.2",