Support Python 3.9

This commit is contained in:
Alieh Rymašeŭski 2021-06-24 14:16:57 +03:00
parent e404e82795
commit 783316331f
4 changed files with 7 additions and 3 deletions

View file

@ -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:

View file

@ -5,6 +5,7 @@ django-auditlog
[![Build Status](https://github.com/jazzband/django-auditlog/workflows/Test/badge.svg)](https://github.com/jazzband/django-auditlog/actions)
[![Docs](https://readthedocs.org/projects/django-auditlog/badge/?version=latest)](http://django-auditlog.readthedocs.org/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/jazzband/django-auditlog/branch/master/graph/badge.svg)](https://codecov.io/gh/jazzband/django-auditlog)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/django-auditlog.svg)](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.**

View file

@ -35,6 +35,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",
],
)

View file

@ -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
py38-qa
@ -27,6 +27,7 @@ passenv=
TEST_DB_PORT
basepython =
py39: python3.9
py38: python3.8
py37: python3.7
py36: python3.6
@ -52,3 +53,4 @@ python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39