mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-15 02:54:50 +00:00
build(python): remove python 3.6 support
This commit is contained in:
parent
d5e192c285
commit
6fe3220a28
5 changed files with 6 additions and 9 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.6', '3.7', '3.8', '3.9', '3.10']
|
||||
python-version: ['3.7', '3.8', '3.9', '3.10']
|
||||
|
||||
services:
|
||||
postgres:
|
||||
|
|
|
|||
|
|
@ -11,10 +11,10 @@ The repository can be found at https://github.com/jazzband/django-auditlog/.
|
|||
|
||||
**Requirements**
|
||||
|
||||
- Python 3.6 or higher
|
||||
- Python 3.7 or higher
|
||||
- Django 2.2 or higher
|
||||
|
||||
Auditlog is currently tested with Python 3.6 - 3.8 and Django 2.2, 3.1 and 3.2. The latest test report can be found
|
||||
Auditlog is currently tested with Python 3.7 - 3.8 and Django 2.2, 3.1 and 3.2. The latest test report can be found
|
||||
at https://github.com/jazzband/django-auditlog/actions.
|
||||
|
||||
Adding Auditlog to your Django application
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[tool.black]
|
||||
target-version = ["py36"]
|
||||
target-version = ["py37"]
|
||||
|
||||
# black compatible isort
|
||||
[tool.isort]
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -26,7 +26,6 @@ setup(
|
|||
zip_safe=False,
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
|
|
|
|||
6
tox.ini
6
tox.ini
|
|
@ -1,7 +1,7 @@
|
|||
[tox]
|
||||
envlist =
|
||||
{py36,py37,py38,py39}-django-{22,31}
|
||||
{py36,py37,py38,py39,py10}-django32
|
||||
{py37,py38,py39}-django-{22,31}
|
||||
{py37,py38,py39,py10}-django32
|
||||
py38-docs
|
||||
py38-qa
|
||||
|
||||
|
|
@ -29,7 +29,6 @@ basepython =
|
|||
py39: python3.9
|
||||
py38: python3.8
|
||||
py37: python3.7
|
||||
py36: python3.6
|
||||
|
||||
[testenv:py38-docs]
|
||||
changedir = docs/source
|
||||
|
|
@ -47,7 +46,6 @@ commands =
|
|||
|
||||
[gh-actions]
|
||||
python =
|
||||
3.6: py36
|
||||
3.7: py37
|
||||
3.8: py38
|
||||
3.9: py39
|
||||
|
|
|
|||
Loading…
Reference in a new issue