From 870f13098948783341d51e097882759d788d20a3 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 12 Aug 2021 16:04:02 +0100 Subject: [PATCH] setup.cfg: Fix errant key The author of change I08c014e10c3fc54046930ea8be2b13775428e51b fat fingered the replacement of 'python-requires' with 'python_requires' resulting in the following warning: UserWarning: Usage of dash-separated 'python-r_quires' will not be supported in future versions. Please use the underscore name 'python_r_quires' instead Not sure how setuptools was still identifying but resolve it nonetheless. Related-Bug: #1939716 Change-Id: I293919d6dc93bf221eae9109fd4a658d332bdca8 Signed-off-by: Stephen Finucane --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5842114102..7351e0b943 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ description_file = author = OpenStack author_email = openstack-discuss@lists.openstack.org home_page = https://docs.openstack.org/glance/latest/ -python-r_quires = >=3.6 +python_requires = >=3.6 classifier = Environment :: OpenStack Intended Audience :: Information Technology