From 724c6d01a4952fee3c77a4aae77108a144524098 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Fri, 15 Feb 2019 02:30:10 +0800 Subject: Fix a warning under Python 3.7 ``` `Warning: 'classifiers' should be a list, got type 'tuple'` ``` Related issue: https://bugs.python.org/issue19610 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c3afd0f..d4d2d14 100755 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ A comprehensive HTTP client library, ``httplib2`` supports many features left ou package_data={"httplib2": ["*.txt"]}, tests_require=read_requirements("requirements-test.txt"), cmdclass={"test": TestCommand}, - classifiers=( + classifiers=[ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", @@ -103,5 +103,5 @@ A comprehensive HTTP client library, ``httplib2`` supports many features left ou "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries", - ), + ], ) -- cgit v1.2.3