Skip to content

Commit 63af7fa

Browse files
committed
Update version support
* Drop Django 4.0 * Add Django 4.2
1 parent 7088aac commit 63af7fa

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ jobs:
7979
- "3.10"
8080
django-version:
8181
- "3.2" # LTS
82-
include:
83-
- python-version: "3.11" # only Django 4.1+ supports Python 3.11
84-
django-version: "4.1"
8582
runs-on: ubuntu-latest
8683
steps:
8784
- uses: actions/checkout@v3
@@ -103,11 +100,11 @@ jobs:
103100
strategy:
104101
matrix:
105102
python-version:
106-
- "3.10" # only Django 4.1+ supports Python 3.11
103+
- "3.11"
107104
django-version:
108105
# LTS gets tested on all OS
109-
- "4.0"
110106
- "4.1"
107+
- "4.2"
111108
runs-on: ubuntu-latest
112109
steps:
113110
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ classifiers = [
2929
"Programming Language :: Python :: 3.11",
3030
"Framework :: Django",
3131
"Framework :: Django :: 3.2",
32-
"Framework :: Django :: 4.0",
3332
"Framework :: Django :: 4.1",
33+
"Framework :: Django :: 4.2",
3434
]
3535
requires-python = ">=3.8"
36-
dependencies = ["django", "pillow"]
36+
dependencies = ["django>=3.2.0", "pillow>=9.0.0"]
3737

3838
[project.optional-dependencies]
3939
test = [

0 commit comments

Comments
 (0)