Skip to content

Commit

Permalink
Remove support for Django 3.2 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Apr 16, 2024
1 parent e5af176 commit e56842a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,8 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
django-version: [3.2, 4.1, 4.2, 5.0, "main"]
django-version: [4.1, 4.2, 5.0, "main"]
exclude:
# Django 3.2
- python-version: "3.10"
django-version: 3.2
- python-version: 3.11
django-version: 3.2
- python-version: 3.12
django-version: 3.2

# Django 4.1
- python-version: 3.12
django-version: 4.1
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
Expand All @@ -27,7 +26,7 @@ classifiers = [
"Topic :: Utilities",
]
dependencies = [
"Django>=3.2",
"Django>=4.1",
"beautifulsoup4>=4.8.0",
]
description = "Django extensions by Zostera"
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
args_are_paths = false
envlist =
py38-{3.2,4.1,4.2},
py39-{3.2,4.1,4.2},
py310-{3.2,4.1,4.2,5.0,main},
py38-{4.1,4.2},
py39-{4.1,4.2},
py310-{4.1,4.2,5.0,main},
py311-{4.1,4.2,5.0,main},
py312-{4.2,5.0,main},
docs,
Expand All @@ -25,7 +25,6 @@ setenv =
commands =
python manage.py test {posargs}
deps =
3.2: Django==3.2.*
4.0: Django==4.0.*
4.1: Django==4.1.*
4.2: Django==4.2.*
Expand Down

0 comments on commit e56842a

Please sign in to comment.