From ce34a8b925ffb9ce68a08a2dd05a2828326bf88c Mon Sep 17 00:00:00 2001 From: George Leslie-Waksman Date: Tue, 28 Nov 2017 10:08:57 -0800 Subject: [PATCH] Drop Python 3.3 support --- .travis.yml | 1 - setup.py | 7 ++----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9535c14..aa9e2c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ python: - 3.6 - 3.5 - 3.4 - - 3.3 before_install: diff --git a/setup.py b/setup.py index b27d6e1..0904e30 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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', @@ -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',