Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Oct 2020 20:07:53 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r552456 - head/devel/py-kaptan/files
Message-ID:  <202010152007.09FK7rBi006504@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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',
+-    ),
++    ],
+ )



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010152007.09FK7rBi006504>