diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4eb2189..5224d9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 4b07966..dec691d 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 8c3cf0d..7145f7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.black] -target-version = ["py36"] +target-version = ["py37"] # black compatible isort [tool.isort] diff --git a/setup.py b/setup.py index 0c1f38e..0d36676 100644 --- a/setup.py +++ b/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", diff --git a/tox.ini b/tox.ini index e766e98..c3113d2 100644 --- a/tox.ini +++ b/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