From 15a0d77ad5476961e9043c01e8946ddcc4512102 Mon Sep 17 00:00:00 2001 From: liyou01 Date: Tue, 27 Apr 2021 17:06:32 +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: I35db22f4413dcc2809d1ef892bd08006fe757446 --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index f5a72142..ddc4f0a0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = tripleo-specs summary = TripleO specs repository -description-file = +description_file = README.rst author = OpenStack -author-email = openstack-discuss@lists.openstack.org -home-page = https://specs.openstack.org/openstack/tripleo-specs/ +author_email = openstack-discuss@lists.openstack.org +home_page = https://specs.openstack.org/openstack/tripleo-specs/ classifier = Intended Audience :: Developers License :: OSI Approved :: Apache Software License