Remove Python 3.5 support. (#301)

This commit is contained in:
Hasan Ramezani 2021-05-24 01:25:46 +02:00 committed by GitHub
parent 2c6bf286b4
commit 2e477ab04a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 9 deletions

View file

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

View file

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

View file

@ -1,5 +1,5 @@
[tool.black] [tool.black]
target-version = ["py35"] target-version = ["py36"]
# black compatible isort # black compatible isort
[tool.isort] [tool.isort]

View file

@ -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",

View file

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