From 5e435a4264cc4f6e4c35af7938defd781d53f52b Mon Sep 17 00:00:00 2001 From: jiangzhilin Date: Tue, 4 May 2021 15:52:29 +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 [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb Change-Id: I1f6e855b0c9cddaf714bf5750f3edd167ede1527 --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index d5620bc..e359bf9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = ansible-role-container-registry summary = ansible-container-registry - Ansible role to deploy a container registry -description-file = +description_file = README.rst author = TripleO Team -author-email = emilien@redhat.com -home-page = https://opendev.org/openstack/ansible-role-container-registry +author_email = emilien@redhat.com +home_page = https://opendev.org/openstack/ansible-role-container-registry classifier = License :: OSI Approved :: Apache Software License Development Status :: 4 - Beta @@ -15,7 +15,7 @@ classifier = Topic :: Utilities [global] -setup-hooks = +setup_hooks = pbr.hooks.setup_hook [files]