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 11da4fb commit 2b7ab32
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 18 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## In development

- Update documentation (#426).
- Remove support for Django 3.2 (EOL) (#).

## 23.5 (2023-12-28)

Expand Down
2 changes: 0 additions & 2 deletions example/requirements.txt

This file was deleted.

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",
]
description = "Icons for Django"
license = {file = "LICENSE"}
Expand Down
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[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,
lint,

[testenv]
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
Expand All @@ -25,7 +24,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 2b7ab32

Please sign in to comment.