Skip to content

Commit

Permalink
Drop support for Django 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mschoettle authored and jheld committed Mar 18, 2024
1 parent c307fa2 commit 2287597
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions easyaudit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
import django

if django.VERSION < (3, 2):
default_app_config = 'easyaudit.apps.EasyAuditConfig'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
include_package_data=True,
install_requires=[
"beautifulsoup4",
"django>=3.2"
"django>=4.2"
],
python_requires=">=3.8",
license='GPL3',
Expand All @@ -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",
Expand Down

0 comments on commit 2287597

Please sign in to comment.