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 26, 2017
1 parent 2392366 commit 6b31f45
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 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',
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake8,py26,py27,py35
envlist = flake8,py27,py35

[flake8]
; E501: line too long (X > 79 characters)
Expand Down

0 comments on commit 6b31f45

Please sign in to comment.