Skip to content

Commit

Permalink
update test matrix to include django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lilioid committed Jan 17, 2024
1 parent d381461 commit dbbbaf4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,16 @@ jobs:
strategy:
fail-fast: false
matrix:
py_version: [ "3.9", "3.10", "3.11" ]
django_version: ["3.2", "4.0", "4.1"]
py_version: ["3.9", "3.10", "3.11"]
drf_version: ["3.13", "3.14"]
django_version:
- "3.2" # LTS
- "4.2" # LTS
- "5.0" # current
exclude:
# django 5.0 requires python >3.9
- py_version: "3.9"
django_version: "5.0"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
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 @@ dependencies = [

[project.optional-dependencies]
django = [
"django>=3.2,<5.0",
"django>=3.2",
]
djangorestframework = [
"djangorestframework~=3.13",
Expand Down

0 comments on commit dbbbaf4

Please sign in to comment.