Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Aug 2020 18:45:47 +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: r546417 - head/net/py-pysocks/files
Message-ID:  <202008271845.07RIjlD0019661@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Aug 27 18:45:46 2020
New Revision: 546417
URL: https://svnweb.freebsd.org/changeset/ports/546417

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

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

Added: head/net/py-pysocks/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-pysocks/files/patch-setup.py	Thu Aug 27 18:45:46 2020	(r546417)
@@ -0,0 +1,17 @@
+--- setup.py.orig	2019-05-11 09:18:35 UTC
++++ setup.py
+@@ -32,12 +32,12 @@ setup(
+     py_modules=["socks", "sockshandler"],
+     install_requires=requirements,
+     python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+-    classifiers=(
++    classifiers=[
+         "Programming Language :: Python :: 2",
+         "Programming Language :: Python :: 2.7",
+         "Programming Language :: Python :: 3",
+         "Programming Language :: Python :: 3.4",
+         "Programming Language :: Python :: 3.5",
+         "Programming Language :: Python :: 3.6",
+-    ),
++    ],
+ )



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