From c32cf2ff406b8e99489b2263667f228955195051 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 26 Jun 2025 10:37:14 +0900 Subject: [PATCH] Remove Python 3.9 support Python 3.9 is no longer part of the tested runtimes[1]. Also Python 3.12 has been tested and is mandatory now. [1] https://governance.openstack.org/tc/reference/runtimes/2025.2.html Change-Id: I9ac1b4ffd6acd3968b2bc094a0ab3a7aff7f893d --- releasenotes/notes/remove-py39-7c8a2397befd6ecc.yaml | 5 +++++ setup.cfg | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/remove-py39-7c8a2397befd6ecc.yaml diff --git a/releasenotes/notes/remove-py39-7c8a2397befd6ecc.yaml b/releasenotes/notes/remove-py39-7c8a2397befd6ecc.yaml new file mode 100644 index 00000000000..eaf3014b9a2 --- /dev/null +++ b/releasenotes/notes/remove-py39-7c8a2397befd6ecc.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - | + Support for Python 3.9 has been removed. Now Python 3.10 is the minimum + version supported. diff --git a/setup.cfg b/setup.cfg index 76fb79d170f..3bbaddf3d8b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ long_description = file: README.rst author = OpenStack author_email = openstack-discuss@lists.openstack.org url = https://docs.openstack.org/cinder/latest/ -python_requires = >=3.9 +python_requires = >=3.10 classifiers = Environment :: OpenStack Intended Audience :: Information Technology @@ -16,9 +16,9 @@ classifiers = Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 - Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 project_urls: Source=https://opendev.org/openstack/cinder Tracker=https://bugs.launchpad.net/cinder