Skip to content

Commit 7d82d71

Browse files
committed
Drop support for Python 3.5
refs #50
1 parent 3813fcc commit 7d82d71

File tree

5 files changed

+3
-12
lines changed

5 files changed

+3
-12
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ sudo: false
33
language: python
44

55
python:
6-
- 3.5
76
- 3.6
87
- 3.7
98
- 3.8

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## master (unreleased)
44

5-
Nothing here yet.
5+
* Drop Python 3.5 support (#50).
66

77
## 2.0.0 (2020-06-22)
88

README.rst

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,9 @@ your RAM.
1010

1111
Tested with all the combinations of:
1212

13-
* Python: 3.5, 3.6, 3.7, 3.8
13+
* Python: 3.6, 3.7, 3.8
1414
* Django: 2, 2.1, 2.2, 3.0, master
1515

16-
17-
.. note::
18-
19-
Django 3.0 is incompatible with Python 3.5, see <https://docs.djangoproject.com/en/3.0/releases/3.0/#python-compatibility>
20-
2116
Usage
2217
=====
2318

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ def namespace_packages(project_name):
7373
'Operating System :: OS Independent',
7474
'Programming Language :: Python',
7575
'Programming Language :: Python :: 3',
76-
'Programming Language :: Python :: 3.5',
7776
'Programming Language :: Python :: 3.6',
7877
'Programming Language :: Python :: 3.7',
7978
'Programming Language :: Python :: 3.8',

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[tox]
22
envlist =
33
flake8
4-
py{35,36,37,38}-django{20,21,22}
4+
py{36,37,38}-django{20,21,22}
55
py{36,37,38}-django30
66
py{36,37,38}-djangomaster
77

88
[testenv]
99
basepython =
1010
flake8: python3
11-
py35: python3.5
1211
py36: python3.6
1312
py37: python3.7
1413
py38: python3.8
@@ -26,7 +25,6 @@ commands =
2625

2726
[travis]
2827
python =
29-
3.5: py35
3028
3.6: py36
3129
3.7: py37
3230
3.8: py38

0 commit comments

Comments
 (0)