From e6c58e56af21837e6874f34457b3db1ca93ba3dd Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Fri, 11 Oct 2024 03:49:26 +0100 Subject: [PATCH] Update versions in README.md --- README.md | 13 ++++++------- check_versions.py | 4 +++- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d5beb39..5176cd0 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ of Sphinx we're using where: 3.9 ø sphinx==2.4.4 needs_sphinx='1.8' 3.10 ø sphinx==3.4.3 needs_sphinx='3.2' 3.11 ø sphinx~=7.2.0 needs_sphinx='4.2' - 3.12 ø sphinx~=8.0.0 needs_sphinx='6.2.1' - 3.13 ø sphinx~=8.0.0 needs_sphinx='6.2.1' - 3.14 ø sphinx~=8.0.0 needs_sphinx='6.2.1' + 3.12 ø sphinx~=8.1.0 needs_sphinx='6.2.1' + 3.13 ø sphinx~=8.1.0 needs_sphinx='6.2.1' + 3.14 ø sphinx~=8.1.0 needs_sphinx='6.2.1' ========= ============= ================== ==================== Sphinx build as seen on docs.python.org: @@ -44,11 +44,10 @@ of Sphinx we're using where: ========= ===== ===== ===== ===== ===== ===== ===== ===== ======= ===== ===== ======= ======= version en es fr id it ja ko pl pt-br tr uk zh-cn zh-tw ========= ===== ===== ===== ===== ===== ===== ===== ===== ======= ===== ===== ======= ======= - 3.8 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 3.9 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 2.4.4 3.10 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.4.3 3.11 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 7.2.6 - 3.12 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 - 3.13 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 - 3.14 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 8.0.2 + 3.12 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 + 3.13 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 + 3.14 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 8.1.0 ========= ===== ===== ===== ===== ===== ===== ===== ===== ======= ===== ===== ======= ======= diff --git a/check_versions.py b/check_versions.py index 63ffab5..70cade9 100644 --- a/check_versions.py +++ b/check_versions.py @@ -7,13 +7,15 @@ import re import httpx +import urllib3 from tabulate import tabulate import git import build_docs logger = logging.getLogger(__name__) -VERSIONS = build_docs.parse_versions_from_devguide() +http = urllib3.PoolManager() +VERSIONS = build_docs.parse_versions_from_devguide(http) LANGUAGES = build_docs.parse_languages_from_config()