From 75ab01a53311e61b0bc9805c5398d2062ac2fa94 Mon Sep 17 00:00:00 2001 From: amercader Date: Wed, 27 Sep 2017 13:44:35 +0100 Subject: [PATCH] Fix setup.py classifiers syntax Was preventing the package from being uploaded to PyPI --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 652ffa11463..b2a9695549f 100644 --- a/setup.py +++ b/setup.py @@ -234,7 +234,7 @@ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Programming Language :: Python', - 'Programming Language :: Python :: 2 :: Only' + 'Programming Language :: Python :: 2 :: Only', 'Programming Language :: Python :: 2.7', ], )