Drop Python 3.10 support

Change-Id: I3dde577a9116fe0d095b25b784371e974c3ab0d6
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane
2026-06-24 13:39:07 +01:00
parent 2a09d4b5ca
commit 52703ad3b4
3 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ LOG = logging.getLogger(__name__)
_timeint = int(os.environ.get('SOURCE_DATE_EPOCH', time.time()))
_default_last_updated = datetime.datetime.fromtimestamp(
_timeint, tz=datetime.timezone.utc
_timeint, tz=datetime.UTC
).replace(tzinfo=None)
+3 -3
View File
@@ -11,7 +11,7 @@ authors = [
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {text = "Apache-2.0"}
dynamic = ["version", "dependencies"]
requires-python = ">=3.10"
requires-python = ">=3.11"
classifiers = [
"Environment :: OpenStack",
"Intended Audience :: Information Technology",
@@ -20,10 +20,10 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Typing :: Typed",
]
@@ -43,7 +43,7 @@ script-files = [
]
[tool.mypy]
python_version = "3.10"
python_version = "3.11"
show_column_numbers = true
show_error_context = true
strict = true
@@ -0,0 +1,5 @@
---
upgrade:
- |
Support for Python 3.10 has been dropped. The minimum version of Python now
supported is 3.11.