Skip to content

Commit

Permalink
Drop support for end-of-life Python versions
Browse files Browse the repository at this point in the history
Per the [dev
guide](https://docs.python.org/devguide/#status-of-python-branches), the
following versions have been end of lifed:

- 2.6: 2013-10-29
- 3.1: 2012-04-11
- 3.2: 2016-02-20

Removing support for EOL versions should make future maintenance easier.
  • Loading branch information
jonafato committed Jun 27, 2017
1 parent 599764b commit d01e188
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake8,py26,py27,py35,py36
envlist = flake8,py27,py35,py36

[flake8]
; E501: line too long (X > 79 characters)
Expand All @@ -24,9 +24,6 @@ commands =
deps = flake8
commands = flake8 --doctests setup.py voluptuous

[testenv:py26]
basepython = python2.6

[testenv:py27]
basepython = python2.7

Expand Down

0 comments on commit d01e188

Please sign in to comment.