From 64116801ff323a6a669d66e193e75b3fdfb01be0 Mon Sep 17 00:00:00 2001 From: liyou01 Date: Tue, 18 May 2021 10:09:10 +0800 Subject: [PATCH] setup.cfg: Replace dashes with underscores Setuptools v54.1.0 introduces a warning that the use of dash-separated options in 'setup.cfg' will not be supported in a future version [1]. Get ahead of the issue by replacing the dashes with underscores. Without this, we see 'UserWarning' messages like the following on new enough versions of setuptools: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead Change-Id: I6fbe11a5bac502197225c719948548bdc8830402 --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 08d2b9a..a6f9543 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = goal-tools author = OpenStack -author-email = openstack-discuss@lists.openstack.org +author_email = openstack-discuss@lists.openstack.org summary = OpenStack Community-wide Goal Tools -description-file = +description_file = README.rst -home-page = https://governance.openstack.org/tc/goals/index.html +home_page = https://governance.openstack.org/tc/goals/index.html classifier = Development Status :: 5 - Production/Stable Intended Audience :: Developers