svn commit: r552456 - head/devel/py-kaptan/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Thu Oct 15 20:07:56 UTC 2020


Author: sunpoet
Date: Thu Oct 15 20:07:52 2020
New Revision: 552456
URL: https://svnweb.freebsd.org/changeset/ports/552456

Log:
  Fix setup.py warning
  
  Warning: 'classifiers' should be a list, got type 'tuple'

Added:
  head/devel/py-kaptan/files/
  head/devel/py-kaptan/files/patch-setup.py   (contents, props changed)

Added: head/devel/py-kaptan/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-kaptan/files/patch-setup.py	Thu Oct 15 20:07:52 2020	(r552456)
@@ -0,0 +1,18 @@
+--- 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',
+-    ),
++    ],
+ )


More information about the svn-ports-head mailing list