Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 5d57eeb

Browse files
authored
Merge pull request #65 from svisser/updated-supported-pythons
Only support Python 2.7, 3.4, 3.5 and 3.6
2 parents 7e1899d + df4bd10 commit 5d57eeb

File tree

3 files changed

+3
-16
lines changed

3 files changed

+3
-16
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ sudo: false
22
language: python
33
python:
44
- "2.7"
5-
- "3.2"
65
- "3.4"
76
- "3.5"
87
- "3.6"

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
2-
if sys.version_info < (2, 6):
3-
print(sys.stderr, "{}: need Python 2.6 or later.".format(sys.argv[0]))
2+
if sys.version_info < (2, 7):
3+
print(sys.stderr, "{}: need Python 2.7 or later.".format(sys.argv[0]))
44
print(sys.stderr, "Your Python is {}".format(sys.version))
55
sys.exit(1)
66

@@ -25,12 +25,8 @@
2525
'Operating System :: OS Independent',
2626
'Programming Language :: Python',
2727
'Programming Language :: Python :: 2',
28-
'Programming Language :: Python :: 2.6',
2928
'Programming Language :: Python :: 2.7',
3029
'Programming Language :: Python :: 3',
31-
'Programming Language :: Python :: 3.1',
32-
'Programming Language :: Python :: 3.2',
33-
'Programming Language :: Python :: 3.3',
3430
'Programming Language :: Python :: 3.4',
3531
'Programming Language :: Python :: 3.5',
3632
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
[tox]
2-
envlist = py27, py31, py32, py34, py35, py36
2+
envlist = py27, py34, py35, py36
33

44
[testenv]
55
commands = python -m unittest discover
6-
7-
[testenv:py26]
8-
commands = python -m discover
9-
deps = discover
10-
11-
[testenv:py31]
12-
commands = python -m discover
13-
deps = discover

0 commit comments

Comments
 (0)