Update setup.cfg and tox.ini
Add Python 3.9 to the list of supported Pythons and replace dashes (which are deprecated) 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: I12cc6206ebfe06b7cf3a50ea59bf1b55a3ff7303
This commit is contained in:
parent
d320c6c60a
commit
eb3c6d4957
@ -2,11 +2,11 @@
|
|||||||
name = refstack-client
|
name = refstack-client
|
||||||
version = 0.1.1
|
version = 0.1.1
|
||||||
summary = Tempest test wrapper and result uploader for refstack
|
summary = Tempest test wrapper and result uploader for refstack
|
||||||
description-file =
|
description_file =
|
||||||
README.rst
|
README.rst
|
||||||
author = OpenStack
|
author = OpenStack
|
||||||
author-email = openstack-discuss@lists.openstack.org
|
author_email = openstack-discuss@lists.openstack.org
|
||||||
home-page = https://refstack.openstack.org
|
home_page = https://refstack.openstack.org
|
||||||
classifier =
|
classifier =
|
||||||
Environment :: OpenStack
|
Environment :: OpenStack
|
||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
@ -21,6 +21,7 @@ classifier =
|
|||||||
Programming Language :: Python :: 3.6
|
Programming Language :: Python :: 3.6
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
|
Programming Language :: Python :: 3.9
|
||||||
|
|
||||||
[files]
|
[files]
|
||||||
packages =
|
packages =
|
||||||
|
Loading…
Reference in New Issue
Block a user