Skip to content

Commit 2c84ded

Browse files
committed
drop py 2.6
1 parent 95ed95e commit 2c84ded

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@ sudo: false
22
language: python
33
cache: pip
44

5-
dist:
6-
- trusty
75

86
matrix:
97
include:
10-
- python: 2.6
11-
env: TOXENV=py26
128
- python: 2.7
139
env: TOXENV=py27
1410
- python: 3.3
1511
env: TOXENV=py33
12+
dist:
13+
- trusty
1614
- python: 3.4
1715
env: TOXENV=py34
1816
- python: 3.5

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@
9595
CLASSIFIERS = [
9696
"Programming Language :: Python",
9797
"Programming Language :: Python :: 2",
98-
"Programming Language :: Python :: 2.6",
9998
"Programming Language :: Python :: 2.7",
10099
"Programming Language :: Python :: 3",
101100
"Programming Language :: Python :: 3.3",
@@ -175,7 +174,7 @@
175174
packages=PACKAGES,
176175
package_data=PACKAGE_DATA,
177176
include_package_data=True,
178-
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*",
177+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
179178
classifiers=CLASSIFIERS,
180179
**setup_kwds
181180
)

tox.ini

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

44
[testenv]
55
deps =
66
pytest
77
unittest2
8-
py26: importlib
98
commands = pytest {posargs}

0 commit comments

Comments
 (0)