From 1ff8d5792acd39c004999eabfacc150914b51a69 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Tue, 5 May 2026 12:27:23 +0200 Subject: [PATCH] Build: use Ubuntu 26.04 LTS as default LTS latest image --- readthedocs/builds/constants_docker.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/readthedocs/builds/constants_docker.py b/readthedocs/builds/constants_docker.py index 2c6276996f2..c16bdcae7f8 100644 --- a/readthedocs/builds/constants_docker.py +++ b/readthedocs/builds/constants_docker.py @@ -92,9 +92,7 @@ _OS = RTD_DOCKER_BUILD_SETTINGS["os"] _TOOLS = RTD_DOCKER_BUILD_SETTINGS["tools"] -# TODO: point ``ubuntu-lts-latest`` to Ubuntu 24.04 LTS once we have tested it -# in production after some weeks -_OS["ubuntu-lts-latest"] = _OS["ubuntu-22.04"] +_OS["ubuntu-lts-latest"] = _OS["ubuntu-26.04"] _TOOLS["python"]["3"] = _TOOLS["python"]["3.14"] _TOOLS["python"]["latest"] = _TOOLS["python"]["3"]