From 64040c50e5fbd2739d16b73be8be43c495497593 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Fri, 1 Aug 2025 12:54:06 +0200 Subject: [PATCH] Update supported Python versions. --- .../docsite/rst/dev_guide/testing/sanity/compile.rst | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/docsite/rst/dev_guide/testing/sanity/compile.rst b/docs/docsite/rst/dev_guide/testing/sanity/compile.rst index f266238651b..1d8d8faf544 100644 --- a/docs/docsite/rst/dev_guide/testing/sanity/compile.rst +++ b/docs/docsite/rst/dev_guide/testing/sanity/compile.rst @@ -9,6 +9,7 @@ All Python source files must successfully compile using all supported Python ver The list of supported Python versions is dependent on the version of ``ansible-core`` that you are using. Make sure you consult the version of the documentation which matches your ``ansible-core`` version. + You can find an overview for this and previous versions in :ref:`ansible_core_support_matrix`. Control node code, including plugins in Ansible Collections, must support the following Python versions: @@ -19,11 +20,12 @@ Control node code, including plugins in Ansible Collections, must support the fo Code which runs on targets (``modules`` and ``module_utils``) must support all control node supported Python versions, as well as the additional Python versions supported only on targets: -- 3.8 -- 3.7 -- 3.6 -- 3.5 -- 2.7 +- 3.14 +- 3.13 +- 3.12 +- 3.11 +- 3.10 +- 3.9 .. note::