Skip to content

Commit b72236d

Browse files
committed
Remove Python 3.8 support
Python 3.8 is no longer be part of tested runtimes since 2024.2 and is reaching its EOL soon. Bump the minimum supported python version. Also declare Python 3.12 support because now it's part of the tested runtimes. Change-Id: Ie2b1cb2eb0f2eb6da3266c3fb55b5f3aef7e6af7 Signed-off-by: Takashi Natsume <takanattie@gmail.com>
1 parent edebd28 commit b72236d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
upgrade:
3+
- |
4+
Support for Python 3.8 has been removed. Now the minimum python version
5+
supported is 3.9 .

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = Apache License, Version 2.0
77
author = OpenStack
88
author_email = openstack-discuss@lists.openstack.org
99
home_page = https://docs.openstack.org/python-novaclient/latest
10-
python_requires = >=3.8
10+
python_requires = >=3.9
1111
classifier =
1212
Development Status :: 5 - Production/Stable
1313
Environment :: Console
@@ -18,10 +18,10 @@ classifier =
1818
Operating System :: OS Independent
1919
Programming Language :: Python
2020
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.8
2221
Programming Language :: Python :: 3.9
2322
Programming Language :: Python :: 3.10
2423
Programming Language :: Python :: 3.11
24+
Programming Language :: Python :: 3.12
2525
Programming Language :: Python :: 3 :: Only
2626
Programming Language :: Python :: Implementation :: CPython
2727

0 commit comments

Comments
 (0)