Skip to content

Commit

Permalink
Drop Python 3.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
gwax committed Nov 28, 2017
1 parent ebfd98b commit ce34a8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ python:
- 3.6
- 3.5
- 3.4
- 3.3


before_install:
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import setuptools


if sys.version_info < (3, 3):
raise Exception('Python version < 3.3 are not supported.')
if sys.version_info < (3, 4):
raise Exception('Python version < 3.4 are not supported.')

# Get version information without importing the package
__version__ = None
Expand All @@ -23,8 +23,6 @@

if sys.version_info < (3, 5):
DEPENDENCIES.append('typing>=3.5.2,<4.0.0')
if sys.version_info < (3, 4):
DEPENDENCIES.append('enum34>=1.1.6,<2.0.0')

CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -39,7 +37,6 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down

0 comments on commit ce34a8b

Please sign in to comment.