mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Confirm Python 3.12 support (#572)
* Confirm Python 3.12 support * Remove dj4.2/py3.12 from tox.ini
This commit is contained in:
parent
40ff8ae74d
commit
a034588ec7
4 changed files with 8 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -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",
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue