From 19ee96965ad3b3122571bc2eee2620f8eed1ba88 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 5 Feb 2016 21:16:59 -0600 Subject: [PATCH] Properly indicate python 3 support requestsexceptions supports python3 just fine, but the build files did not indicate this. More importantly, wheel=universal was not set, so it was just uploading a py2 wheel to pypi. Silly wheels. Change-Id: I4992eebe18193329699409ecfee9036b67dfbac3 Closes-Bug: 1541616 --- setup.cfg | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 34dc4f4..654acfb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,8 +15,13 @@ classifier = Programming Language :: Python Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 - Programming Language :: Python :: 2.6 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 [files] packages = requestsexceptions + +[wheel] +universal = 1