mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Add Python 3.9 support.
This commit is contained in:
parent
793cb45960
commit
e9cfdb2e48
4 changed files with 7 additions and 3 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.5', '3.6', '3.7', '3.8']
|
||||
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
|
||||
|
||||
services:
|
||||
postgres:
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ django-auditlog
|
|||
[](https://github.com/jazzband/django-auditlog/actions)
|
||||
[](http://django-auditlog.readthedocs.org/en/latest/?badge=latest)
|
||||
[](https://codecov.io/gh/jazzband/django-auditlog)
|
||||
[](https://pypi.python.org/pypi/django-auditlog)
|
||||
|
||||
**Please remember that this app is still in development.**
|
||||
**Test this app before deploying it in production environments.**
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -29,6 +29,7 @@ setup(
|
|||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
],
|
||||
)
|
||||
|
|
|
|||
6
tox.ini
6
tox.ini
|
|
@ -1,7 +1,7 @@
|
|||
[tox]
|
||||
envlist =
|
||||
{py35,py36,py37,py38}-django-22
|
||||
{py36,py37,py38}-django-{30,31}
|
||||
{py35,py36,py37,py38,py39}-django-22
|
||||
{py36,py37,py38,py39}-django-{30,31}
|
||||
py38-docs
|
||||
|
||||
[testenv]
|
||||
|
|
@ -24,6 +24,7 @@ passenv=
|
|||
TEST_DB_PORT
|
||||
|
||||
basepython =
|
||||
py39: python3.9
|
||||
py38: python3.8
|
||||
py37: python3.7
|
||||
py36: python3.6
|
||||
|
|
@ -40,3 +41,4 @@ python =
|
|||
3.6: py36
|
||||
3.7: py37
|
||||
3.8: py38
|
||||
3.9: py39
|
||||
|
|
|
|||
Loading…
Reference in a new issue