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

Added support for Python 3.12, Django 5.0. #267

Merged
merged 1 commit into from
Jan 17, 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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Tests
on: [push, pull_request]
env:
LATEST_PYTHON_VERSION: "3.11"
LATEST_PYTHON_VERSION: "3.12"
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ Python Django
3.8-3.9 2.2–4.2
3.10 3.2-4.2
3.11 4.1-4.2
3.12 4.2-5.0
======== ==========

- Added support for Django 4.0, 4.1, 4.2 and Python 3.10, 3.11.
- Added support for Django 4.0, 4.1, 4.2, 5.0 and Python 3.10, 3.11, 3.12.
- Removed support for Django 2.1

0.14.0 (2021-06-08)
Expand Down
9 changes: 6 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ envlist = py35-django{22}
py37-django{22,30,31,32}
py38-django{22,30,31,32,40,41,42}
py39-django{22,30,31,32,40,41,42}
py310-django{32,40,41,42,master}
py311-django{41,42,master}
py310-django{32,40,41,42,50,master}
py311-django{41,42,50,master}
py312-django{42,50,master}
black
isort
flake8
Expand All @@ -19,7 +20,8 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311, docs
3.11: py311
3.12: py312, docs

[testenv]
setenv =
Expand All @@ -40,6 +42,7 @@ deps =
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1
djangomaster: https://github.com/django/django/archive/main.tar.gz
pytest-django
pytest-cov
Expand Down
Loading