Skip to content

Commit

Permalink
Remove support for Django 3.2 (EOL) (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve authored Apr 16, 2024
1 parent 7f83fe1 commit dcf1184
Show file tree
Hide file tree
Showing 4 changed files with 9 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## In development

- Remove support for Django 3.2 (EOL) (#583).

## 24.1 (2024-04-12)

- Fix RadioSelectButtonGroup rendering and add 'disabled' attribute to radio button group template (#447).
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 @@ -26,7 +25,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = ["Django>=3.2"]
dependencies = ["Django>=4.1"]
description = "Bootstrap 5 for Django"
license = {file = "LICENSE"}
name = "django-bootstrap5"
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 dcf1184

Please sign in to comment.