From 4881d04dedc4dc5d1ffd742531db4030cf188fcf Mon Sep 17 00:00:00 2001 From: Takashi Natsume Date: Sun, 9 Nov 2025 14:29:46 +0900 Subject: [PATCH] Update the Testing document Python 3.8 is no longer supported in 2026.1. Python 3.10 is the minimum supported/required version for 2026.1. Change-Id: Ic7fea2195f2ec6f2f48f2e9b359d021d0f01d0b7 Signed-off-by: Takashi Natsume --- doc/source/contributor/testing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/contributor/testing.rst b/doc/source/contributor/testing.rst index ed0fa506d..d6a2cfd71 100644 --- a/doc/source/contributor/testing.rst +++ b/doc/source/contributor/testing.rst @@ -8,11 +8,11 @@ test targets that can be run to validate the code. ``tox -e pep8`` Style guidelines enforcement. -``tox -e py38`` - Traditional unit testing (Python 3.8). +``tox -e py310`` + Traditional unit testing (Python 3.10). ``tox -e functional`` - Live functional testing against an existing OpenStack instance. (Python 3.8) + Live functional testing against an existing OpenStack instance. (Python 3.10) ``tox -e cover`` Generate a coverage report on unit testing.