Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
django-version:
- "4.2" # LTS
- "5.2" # LTS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -71,11 +72,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.12"
- "3.10"
django-version:
# LTS gets tested on all OS
- "4.2"
- "5.1"
- "5.2"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ classifiers = [
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = ["django>=4.2.0", "pillow>=11.3.0"]

[project.optional-dependencies]
Expand Down