Skip to content

Commit e6c58e5

Browse files
committed
Update versions in README.md
1 parent 2406204 commit e6c58e5

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

Diff for: README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,20 @@ of Sphinx we're using where:
3434
3.9 ø sphinx==2.4.4 needs_sphinx='1.8'
3535
3.10 ø sphinx==3.4.3 needs_sphinx='3.2'
3636
3.11 ø sphinx~=7.2.0 needs_sphinx='4.2'
37-
3.12 ø sphinx~=8.0.0 needs_sphinx='6.2.1'
38-
3.13 ø sphinx~=8.0.0 needs_sphinx='6.2.1'
39-
3.14 ø sphinx~=8.0.0 needs_sphinx='6.2.1'
37+
3.12 ø sphinx~=8.1.0 needs_sphinx='6.2.1'
38+
3.13 ø sphinx~=8.1.0 needs_sphinx='6.2.1'
39+
3.14 ø sphinx~=8.1.0 needs_sphinx='6.2.1'
4040
========= ============= ================== ====================
4141

4242
Sphinx build as seen on docs.python.org:
4343

4444
========= ===== ===== ===== ===== ===== ===== ===== ===== ======= ===== ===== ======= =======
4545
version en es fr id it ja ko pl pt-br tr uk zh-cn zh-tw
4646
========= ===== ===== ===== ===== ===== ===== ===== ===== ======= ===== ===== ======= =======
47-
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
4847
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
4948
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
5049
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
51-
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
52-
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
53-
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
50+
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
51+
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
52+
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
5453
========= ===== ===== ===== ===== ===== ===== ===== ===== ======= ===== ===== ======= =======

Diff for: check_versions.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@
77
import re
88

99
import httpx
10+
import urllib3
1011
from tabulate import tabulate
1112
import git
1213

1314
import build_docs
1415

1516
logger = logging.getLogger(__name__)
16-
VERSIONS = build_docs.parse_versions_from_devguide()
17+
http = urllib3.PoolManager()
18+
VERSIONS = build_docs.parse_versions_from_devguide(http)
1719
LANGUAGES = build_docs.parse_languages_from_config()
1820

1921

0 commit comments

Comments
 (0)