Remove Python 3.2 classifier

Blame raydeo for this also being a partial pep8 commit...
This commit is contained in:
Bert JW Regeer
2016-02-16 18:27:41 -07:00
parent 47afd196df
commit 09fa9d944d

View File

@@ -51,7 +51,6 @@ setup(name='colander',
"Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
@@ -66,11 +65,10 @@ setup(name='colander',
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires = requires, install_requires=requires,
test_suite="colander", test_suite="colander",
extras_require = { extras_require={
'testing':testing_extras, 'testing': testing_extras,
'docs':docs_extras, 'docs': docs_extras,
}, },
) )