Skip to content

Commit 2d71f07

Browse files
committed
Testing dropping of python 2.6 support, since pylint did that long ago and it is painful to try to keep compat with old versions of both
1 parent 8ca5572 commit 2d71f07

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
sudo: false
22
language: python
33
python:
4-
- "2.6"
54
- "2.7"
65
- "3.3"
76
- "3.4"
@@ -12,6 +11,7 @@ env:
1211
- DJANGO='Django>=1.6,<1.7' SKIP='3.4 3.5'
1312
- DJANGO='Django>=1.7,<1.8' SKIP='2.6'
1413
- DJANGO='Django>=1.8,<1.9' SKIP='2.6'
14+
- DJANGO='Django>=1.9,<1.10' SKIP='2.6'
1515
install:
1616
scripts/travis-install.sh
1717
script:

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
'Intended Audience :: Developers',
2626
'Operating System :: Unix',
2727
'Topic :: Software Development :: Quality Assurance',
28-
'Programming Language :: Python :: 2.6',
2928
'Programming Language :: Python :: 2.7',
3029
'Programming Language :: Python :: 3.3',
3130
'Programming Language :: Python :: 3.4',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,py35
2+
envlist = py27,py33,py34,py35
33

44
[testenv]
55
deps=Django

0 commit comments

Comments
 (0)