From f9e63e4cb5ad385312ec89c516c07adb9dacb235 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 17 Oct 2015 10:01:34 +0800 Subject: [PATCH] Add Python 3.3, 3.4, 3.5 to setup.py classifiers Since they have been added to travis targets already. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9fbb44d1f..bb0dc33ba 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,9 @@ def getRequires(): classifiers=[ 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.2' + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5' ] )