From 277409e6d459ede99e1ff8c79b32b3e74048c071 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Mon, 29 Aug 2022 17:56:48 +0300 Subject: [PATCH 1/2] Use license_files instead of license_file Fix the following warning: ``` /usr/lib/python3.10/site-packages/setuptools/config/setupcfg.py:459: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. warnings.warn(msg, warning_class) ``` Ref: https://github.com/pypa/setuptools/pull/2620 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 0e6ff0f2..123fdc2f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ url = https://github.com/tox-dev/py-filelock author = Benedikt Schmitt author_email = benedikt@benediktschmitt.de license = Unlicense -license_file = LICENSE +license_files = LICENSE classifiers = Development Status :: 5 - Production/Stable Intended Audience :: Developers From 9b3ab58ffb9f7ce0120bbf31902290a49c96318e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Aug 2022 14:57:04 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 123fdc2f..8e2d1868 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,6 +7,7 @@ url = https://github.com/tox-dev/py-filelock author = Benedikt Schmitt author_email = benedikt@benediktschmitt.de license = Unlicense +license_file = LICENSE license_files = LICENSE classifiers = Development Status :: 5 - Production/Stable