Skip to content

Commit a8c3f27

Browse files
author
yangyawei
committed
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] pypa/setuptools@a2e9ae4cb Change-Id: I2781f250f8db9907987b75b0c66ad8bfb041ccee
1 parent a006cc6 commit a8c3f27

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.cfg

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[metadata]
22
name = virtualbmc
33
summary = Create virtual BMCs for controlling virtual instances via IPMI
4-
description-file =
4+
description_file =
55
README.rst
66
author = OpenStack
7-
author-email = openstack-discuss@lists.openstack.org
8-
home-page = https://docs.openstack.org/virtualbmc/latest/
9-
python-requires = >=3.6
7+
author_email = openstack-discuss@lists.openstack.org
8+
home_page = https://docs.openstack.org/virtualbmc/latest/
9+
python_requires = >=3.6
1010
classifier =
1111
Environment :: OpenStack
1212
Intended Audience :: Information Technology

0 commit comments

Comments
 (0)