From 342c3460a177f0cf23325025d6227a58fba38de2 Mon Sep 17 00:00:00 2001 From: Adam Gschwender Date: Thu, 26 Jul 2018 22:21:09 -0400 Subject: [PATCH] Update setup.py to drop python 2.6, 3.2, and 3.3 Since those versions are no longer being tested via travis, best to not indicate that they are supported. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 105ce7f..c5596b6 100644 --- a/setup.py +++ b/setup.py @@ -27,11 +27,9 @@ def run(self): classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.6', ], url='https://github.com/agschwender/pilbox', author='Adam Gschwender',