Confirm Python 3.12 support (#572)

* Confirm Python 3.12 support

* Remove dj4.2/py3.12 from tox.ini
This commit is contained in:
James Gillard 2023-11-02 07:24:28 +00:00 committed by GitHub
parent 40ff8ae74d
commit a034588ec7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 2 deletions

View file

@ -9,7 +9,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
services:
postgres:

View file

@ -2,6 +2,9 @@
## Next Release
#### Improvements
- Python: Confirm Python 3.12 support ([#572](https://github.com/jazzband/django-auditlog/pull/572))
## 3.0.0-beta.2 (2023-10-05)
#### Breaking Changes

View file

@ -36,6 +36,7 @@ setup(
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",

View file

@ -2,7 +2,7 @@
envlist =
{py38,py39,py310}-django32
{py38,py39,py310,py311}-django{41,42}
{py310,py311}-djangomain
{py310,py311,py312}-djangomain
py38-docs
py38-lint
@ -30,6 +30,7 @@ passenv=
TEST_DB_PORT
basepython =
py312: python3.12
py311: python3.11
py310: python3.10
py39: python3.9
@ -51,3 +52,4 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312