From 943a15a967f672d4a61b4bf92f321eb4d4d3cef2 Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 7 Dec 2017 14:51:10 +0200 Subject: [PATCH] Drop support for EOL Python 3.3 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 93c7f85..d49385c 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ setup( author_email='me@kevinmccarthy.org', url='https://github.com/kevin1024/vcrpy', packages=find_packages(exclude=excluded_packages), - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', install_requires=install_requires, extras_require=extras_require, license='MIT', @@ -77,7 +77,6 @@ setup( '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',