mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Remove Python 3.5 support. (#301)
This commit is contained in:
parent
2c6bf286b4
commit
2e477ab04a
5 changed files with 5 additions and 9 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -9,7 +9,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
max-parallel: 5
|
max-parallel: 5
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
|
python-version: ['3.6', '3.7', '3.8', '3.9']
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,10 @@ The repository can be found at https://github.com/jazzband/django-auditlog/.
|
||||||
|
|
||||||
**Requirements**
|
**Requirements**
|
||||||
|
|
||||||
- Python 3.5 or higher
|
- Python 3.6 or higher
|
||||||
- Django 2.2 or higher
|
- Django 2.2 or higher
|
||||||
|
|
||||||
Auditlog is currently tested with Python 3.5 - 3.8 and Django 2.2, 3.0 and 3.1. The latest test report can be found
|
Auditlog is currently tested with Python 3.6 - 3.8 and Django 2.2, 3.0 and 3.1. The latest test report can be found
|
||||||
at https://github.com/jazzband/django-auditlog/actions.
|
at https://github.com/jazzband/django-auditlog/actions.
|
||||||
|
|
||||||
Adding Auditlog to your Django application
|
Adding Auditlog to your Django application
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
[tool.black]
|
[tool.black]
|
||||||
target-version = ["py35"]
|
target-version = ["py36"]
|
||||||
|
|
||||||
# black compatible isort
|
# black compatible isort
|
||||||
[tool.isort]
|
[tool.isort]
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -26,7 +26,6 @@ setup(
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.5",
|
|
||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
|
|
||||||
5
tox.ini
5
tox.ini
|
|
@ -1,7 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
{py35,py36,py37,py38,py39}-django-22
|
{py36,py37,py38,py39}-django-{22,30,31}
|
||||||
{py36,py37,py38,py39}-django-{30,31}
|
|
||||||
py38-docs
|
py38-docs
|
||||||
py38-qa
|
py38-qa
|
||||||
|
|
||||||
|
|
@ -29,7 +28,6 @@ basepython =
|
||||||
py38: python3.8
|
py38: python3.8
|
||||||
py37: python3.7
|
py37: python3.7
|
||||||
py36: python3.6
|
py36: python3.6
|
||||||
py35: python3.5
|
|
||||||
|
|
||||||
[testenv:py38-docs]
|
[testenv:py38-docs]
|
||||||
changedir = docs/source
|
changedir = docs/source
|
||||||
|
|
@ -47,7 +45,6 @@ commands =
|
||||||
|
|
||||||
[gh-actions]
|
[gh-actions]
|
||||||
python =
|
python =
|
||||||
3.5: py35
|
|
||||||
3.6: py36
|
3.6: py36
|
||||||
3.7: py37
|
3.7: py37
|
||||||
3.8: py38
|
3.8: py38
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue