Skip to content

Commit 1114cb7

Browse files
committed
conf.py: add help.github.com to linkcheck_ignore
Problem: sphinx linkcheck is getting a 403 Forbidden on the github reference in spec_1.rst, though the link is tested working from a web browser (Chrome). Add this URL to linkcheck_ignore since it is causing CI to fail.
1 parent 2cf7be3 commit 1114cb7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@
6363
master_doc = 'index'
6464
source_suffix = '.rst'
6565

66+
linkcheck_ignore = [
67+
"https://help.github.com/en/pull-requests", # 403 Forbidden
68+
]
69+
6670

6771
# -- Options for HTML output -------------------------------------------------
6872

0 commit comments

Comments
 (0)