summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-11-26 12:23:28 +0200
committerHugo <hugovk@users.noreply.github.com>2017-11-26 12:23:28 +0200
commita71e22936f8ef2efbbbeb7fd7b19d1f54f0c75c2 (patch)
treeffc8ef2d0a9c9985b1b168708697a328f62835ad
parent4676e41472725b03badcd9517f5aa2c2a41c1ebf (diff)
downloadpython-prettytable-ptable-a71e22936f8ef2efbbbeb7fd7b19d1f54f0c75c2.tar.gz
Drop support for EOL Python <= 2.6
-rw-r--r--setup.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 8eeb9c5..761690e 100644
--- a/setup.py
+++ b/setup.py
@@ -20,11 +20,13 @@ setup(
},
classifiers=[
'Programming Language :: Python',
- 'Programming Language :: Python :: 2.4',
- 'Programming Language :: Python :: 2.5',
- 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: BSD License',
'Topic :: Text Processing'
],