You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/tests.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,9 @@ jobs:
30
30
fail-fast: false
31
31
matrix:
32
32
os: [ubuntu-latest]
33
-
python-version: ["3.11", "3.12", "3.13"]
33
+
python-version: ["3.11", "3.12", "3.13", "3.14"]
34
34
# Test last 2 major releases of Sphinx; regression fixtures target the latest.
35
-
sphinx: ["~=7.0", "~=8.0"]
35
+
sphinx: ["~=7.0", "~=8.0", "~=9.0"]
36
36
include:
37
37
- os: windows-latest
38
38
python-version: 3.13
@@ -109,7 +109,7 @@ jobs:
109
109
from pathlib import Path
110
110
import re
111
111
text = Path("./warnings.txt").read_text().strip()
112
-
expected_warning_patterns = [r"kitchen\-sink", r"urllib/parse\.py", r"Glyph 10024 .*? missing from current font"]
112
+
expected_warning_patterns = [r"kitchen\-sink", r"urllib/parse\.py", r"Glyph 10024 .*? missing from current font", r"list assignment index out of range \[autodoc\]"]
113
113
print("\n=== Sphinx Warnings ===\n\n" + text) # Print just for reference so we can look at the logs
114
114
unexpected = [l for l in text.splitlines() if not any(re.search(p, l) for p in expected_warning_patterns)]
0 commit comments