git: 06f8da145dd2 - main - devel/py-ejson: Fix warning
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 13 May 2022 11:45:40 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=06f8da145dd234d3d9ed4f20740f39015cadbb66 commit 06f8da145dd234d3d9ed4f20740f39015cadbb66 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2022-05-13 11:30:43 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2022-05-13 11:39:26 +0000 devel/py-ejson: Fix warning Warning: 'classifiers' should be a list, got type 'tuple' --- devel/py-ejson/files/patch-setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/devel/py-ejson/files/patch-setup.py b/devel/py-ejson/files/patch-setup.py new file mode 100644 index 000000000000..7ff4d65860c9 --- /dev/null +++ b/devel/py-ejson/files/patch-setup.py @@ -0,0 +1,18 @@ +--- setup.py.orig 2013-11-13 15:40:51 UTC ++++ setup.py +@@ -69,7 +69,7 @@ if __name__ == '__main__': + packages=find_packages(exclude=['*tests*']), + install_requires=install_requires, + dependency_links=dependency_links, +- classifiers=( ++ classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', +@@ -78,5 +78,5 @@ if __name__ == '__main__': + 'Operating System :: POSIX', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', +- ) ++ ] + )