From bef3dfb6ae8d4da0e2f14b4eaaf59c3907af96c5 Mon Sep 17 00:00:00 2001 From: Pete Zaitcev Date: Tue, 13 Dec 2022 23:36:14 -0600 Subject: [PATCH] setup.cfg: Restore python_requires after a typo The "python_equires" typo was introduced by the change I3980fbc53ce4b954aff5e98087897ea94e50e4fc, commit a1e209c9a1bbee28c71ada7cc4675710f3b91794. The typo apparently had a weird effect of declaring our package as supporting Python 2, although obviously we quit py2 long time ago. Closes-bug: 1999431 Change-Id: Ife08f751bd64f2bbb04747ccc030d38ce78db712 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index c6f595f8..94550645 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/keystoneauth/latest/ -python_equires = >=3.8 +python_requires = >=3.8 classifier = Environment :: OpenStack Intended Audience :: Information Technology