← 返回首页
setup.cfg: Replace dashes with underscores · stackhpc/python-openstackclient@fe6a4fa · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Commit fe6a4fa

Browse files
authored andcommitted
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: I7e43e43bc5a24f49aa7b225502e5d0176fef3783
1 parent 6bdf030 commit fe6a4fa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎setup.cfg‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[metadata]
22
name = python-openstackclient
33
summary = OpenStack Command-line Client
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/python-openstackclient/latest/
9-
python-requires = >=3.6
7+
author_email = openstack-discuss@lists.openstack.org
8+
home_page = https://docs.openstack.org/python-openstackclient/latest/
9+
python_requires = >=3.6
1010
classifier =
1111
Environment :: OpenStack
1212
Intended Audience :: Information Technology

0 commit comments

Comments
 (0)

Footer

© 2026 GitHub, Inc.