From 08a7501f1ed4791295eef3b723b8695e7f467d7d Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Thu, 2 Mar 2023 16:24:55 +0100 Subject: [PATCH] Follow up for migration to Python 3 - fix home_page url - support Python from version 3.8 as it's minimum current version supported in openstack and by ironic - put testtools back into test-requirements Change-Id: I3d975e945661b56f245af923c669d6d9f92f8131 --- setup.cfg | 6 ++---- test-requirements.txt | 3 ++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.cfg b/setup.cfg index ce422dc..d5f6a6a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,8 +5,8 @@ description_file = README.rst author = OpenStack author_email = openstack-discuss@lists.openstack.org -home_page = https://docs.openstack.org/virtualpdu/latest/ -python_requires = >=3.6 +home_page = https://opendev.org/x/virtualpdu +python_requires = >=3.8 classifier = Environment :: OpenStack Intended Audience :: Information Technology @@ -17,8 +17,6 @@ classifier = Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 diff --git a/test-requirements.txt b/test-requirements.txt index 9f969fa..b273c04 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -6,4 +6,5 @@ coverage!=4.4,>=4.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0 stestr>=2.0.0 # Apache-2.0 -retrying>=1.3.3 # Apache-2.0 \ No newline at end of file +retrying>=1.3.3 # Apache-2.0 +testtools>=2.5.0 # MIT \ No newline at end of file