Skip to content

Commit

Permalink
Remove Python 3.3 from supported versions
Browse files Browse the repository at this point in the history
Mypy itself needs Python 3.4 at least, citing it's README.md:

> You need Python 3.4 or later to run mypy
  • Loading branch information
petr-muller authored and dmtucker committed Mar 7, 2018
1 parent 1958f97 commit d570355
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
sudo: false
language: python
python:
- "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 @@ -31,7 +31,6 @@ def read(fname):
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = py33,py34,py35,flake8
envlist = py34,py35,py36,flake8

[testenv]
deps = pytest
Expand Down

0 comments on commit d570355

Please sign in to comment.