Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,18 @@ jobs:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
django: ["3.2.16", "4.0.8", "4.1.4" ]
django: ["3.2.16", "4.0.8", "4.1.4", "5.0.1"]
exclude:
# Excludes Python 3.11 for Django < 4.1
- python: "3.11"
django: "3.2.16"
- python: "3.11"
django: "4.0.8"
# Django 5.0 requires Python 3.10 or higher
- python: "3.8"
django: "5.0.1"
- python: "3.9"
django: "5.0.1"

services:
postgres:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ keywords = ["django",
python = ">=3.8.1,<4"
jsonschema = "^3.0||^4.0"
psycopg2-binary = "^2.7||^3.0"
django = "^3.2||^4.0"
django = "^3.2||^4.0||^5.0"


[tool.poetry.dev-dependencies]
Expand Down