declare support for python 3.5, drop old py 3.2 reference

This commit is contained in:
Rahiel Kasim 2016-03-17 22:12:36 +01:00
parent fac4eb6438
commit 19390b9659
3 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,7 @@ python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install:

View file

@ -121,6 +121,7 @@ Python Version *Supported?*
2.7 Yes
3.3 Yes
3.4 Yes
3.5 Yes
PyPy Yes
PyPy3 Yes
============== ============

View file

@ -50,8 +50,8 @@ setup(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)