Skip to content

Commit

Permalink
Drop support for Python 3.3 (#343)
Browse files Browse the repository at this point in the history
Python 3.3 has reached end-of-life: https://devguide.python.org/#status-of-python-branches (2017-09-29)
  • Loading branch information
svisser authored and tusharmakkar08 committed Jun 24, 2018
1 parent 44f5ace commit 72411cd
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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,py27,py33,py34,py35,py36
envlist = flake8,py27,py34,py35,py36

[flake8]
; E501: line too long (X > 79 characters)
Expand Down Expand Up @@ -27,9 +27,6 @@ commands = flake8 --doctests setup.py voluptuous
[testenv:py27]
basepython = python2.7

[testenv:py33]
basepython = python3.3

[testenv:py34]
basepython = python3.4

Expand Down

0 comments on commit 72411cd

Please sign in to comment.