1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-20 12:10:31 -04:00
ports/devel/py-kaptan/files/patch-setup.py
Sunpoet Po-Chuan Hsieh 26d9044391 Fix setup.py warning
Warning: 'classifiers' should be a list, got type 'tuple'
2020-10-15 20:07:52 +00:00

18 lines
512 B
Python

--- setup.py.orig 2019-04-23 02:47:39 UTC
+++ setup.py
@@ -58,7 +58,7 @@ setup(
'kaptan = kaptan:main',
],
),
- classifiers=(
+ classifiers=[
'Development Status :: 5 - Production/Stable',
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
@@ -71,5 +71,5 @@ setup(
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
- ),
+ ],
)