Skip to content

Commit 67fae9e

Browse files
committed
Drop support for EOL Python 2.6, 3.2-3.4
1 parent 681f14c commit 67fae9e

File tree

4 files changed

+4
-14
lines changed

4 files changed

+4
-14
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ sudo: false
33

44
python:
55
- "2.7"
6-
- "3.3"
7-
- "3.4"
86
- "3.5"
97
- "3.6"
108
- "pypy"

appveyor.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ environment:
66
- PYTHON: "C:\\Python27"
77
TOX_ENV: "py27"
88

9-
- PYTHON: "C:\\Python33"
10-
TOX_ENV: "py33"
11-
12-
- PYTHON: "C:\\Python34"
13-
TOX_ENV: "py34"
14-
159
- PYTHON: "C:\\Python35"
1610
TOX_ENV: "py35"
1711

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,9 @@
2929
'Topic :: Software Development :: Libraries',
3030
'Topic :: Utilities',
3131
'Programming Language :: Python',
32-
'Programming Language :: Python :: 2.6',
32+
'Programming Language :: Python :: 2',
3333
'Programming Language :: Python :: 2.7',
34-
'Programming Language :: Python :: 3.2',
35-
'Programming Language :: Python :: 3.3',
36-
'Programming Language :: Python :: 3.4',
34+
'Programming Language :: Python :: 3',
3735
'Programming Language :: Python :: 3.5',
3836
'Programming Language :: Python :: 3.6'
3937
])

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ envlist=py{27,35,36}-pytest{30,31,32,33,34,35}
44
[testenv]
55
deps =
66
coverage
7-
py{27,33},pypy: django<2
8-
py{34,35,36}: django>=2
7+
py{27},pypy: django<2
8+
py{35,36}: django>=2
99
pytest30: pytest>=3.0,<3.1
1010
pytest31: pytest>=3.1,<3.2
1111
pytest32: pytest>=3.2,<3.3

0 commit comments

Comments
 (0)