Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Django 5.1 #193

Merged
merged 1 commit into from
Sep 2, 2024
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
django-version: ["3.2", "4.2", "5.0"]
django-version: ["3.2", "4.2", "5.0", "5.1"]
experimental: [false]
include:
- python-version: "3.12"
Expand All @@ -44,6 +44,11 @@ jobs:
django-version: 5.0
- python-version: 3.9
django-version: 5.0
# Unsupported Python versions for Django 5.1
- python-version: 3.8
django-version: 5.1
- python-version: 3.9
django-version: 5.1
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you’ll need to add 5.1 in django-version list in the matrix, line 32.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your comment. It was my mistake. I appreciate you pointing it out. I've made the correction and pushed a new commit ce5877c


steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

## Unreleased

- Add support for Django 5.1

## v3.4.0 - 2024/05/18

- Add support for Django 4.2 and 5.0
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{38,39,310,311,312,py3}-dj{32,42}
py{310,311,312,py3}-dj{50}
py{310,311,312,py3}-dj{50,51}
py312-packaging

[gh-actions]
Expand All @@ -18,6 +18,7 @@ DJANGO =
3.2: dj32
4.2: dj42
5.0: dj50
5.1: dj51
main: djmain
packaging: packaging

Expand All @@ -29,6 +30,7 @@ deps =
dj32: Django~=3.2.0
dj42: Django~=4.2.0
dj50: Django~=5.0.0
dj51: Django~=5.1.0
commands =
py{38,39,310,311,312}: coverage run tests/manage.py test testsuite {posargs: -v 2}
py{38,39,310,311,312}: coverage report -m
Expand Down
Loading