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
This commit is contained in:
Monty Taylor 2016-02-05 21:16:59 -06:00
parent cd9cc98365
commit 19ee96965a
1 changed files with 6 additions and 1 deletions

View File

@ -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