From 8f9a88ef7a299716bdec01f9df75c6f6c854c971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 13 May 2014 19:03:17 +0200 Subject: [PATCH] update the list of officially supported Python versions in setup.py Removed Python 3.0 & 3.1 off the list and added Python 3.4. --HG-- branch : setup cleanup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a3761bbc6..616376d53 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ classifiers = ['Development Status :: 6 - Mature', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities'] + [ ('Programming Language :: Python :: %s' % x) for x in - '2 2.6 2.7 3 3.0 3.1 3.2 3.3'.split()] + '2 2.6 2.7 3 3.2 3.3 3.4'.split()] long_description = open('README.rst').read()