From 1712a798309f2b6eff2ca027bc13aa62958205ca Mon Sep 17 00:00:00 2001 From: Kajinami Takashi Date: Tue, 12 Nov 2024 03:57:31 +0900 Subject: [PATCH] Bump minimum python version (#1430) Python 3.8 already reached its EOL and was removed from test coverage. --- setup.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 40492e6da..d3a7bb375 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ description = Metric as a Service long_description = file: README.rst long_description_content_type = text/x-rst author = Gnocchi developers -python_requires = >=3.8 +python_requires = >=3.9 classifier = Intended Audience :: Information Technology Intended Audience :: System Administrators @@ -14,9 +14,10 @@ classifier = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Topic :: System :: Monitoring [options]