File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1414 - " docs/**"
1515 - " _notebooks"
1616 - " requirements/**"
17- - " src/**"
17+ - " src/lightning/app/**"
18+ - " src/lightning_app/*"
19+ - " src/lightning/fabric/**"
20+ - " src/lightning_fabric/*"
21+ - " src/lightning/pytorch/**"
22+ - " src/pytorch_lightning/*"
1823 - " setup.py"
1924 - " pyproject.toml" # includes metadata used in the package creation
2025 - " !*.md"
Original file line number Diff line number Diff line change @@ -444,5 +444,8 @@ def find_source():
444444# skip false positive linkcheck errors from anchors
445445linkcheck_anchors = False
446446
447+ # A timeout value, in seconds, for the linkcheck builder.
448+ linkcheck_timeout = 10
449+
447450# ignore all links in any CHANGELOG file
448451linkcheck_exclude_documents = [r"^(.*\/)*CHANGELOG.*$" ]
Original file line number Diff line number Diff line change @@ -407,5 +407,8 @@ def find_source():
407407# skip false positive linkcheck errors from anchors
408408linkcheck_anchors = False
409409
410+ # A timeout value, in seconds, for the linkcheck builder.
411+ linkcheck_timeout = 10
412+
410413# ignore all links in any CHANGELOG file
411414linkcheck_exclude_documents = [r"^(.*\/)*CHANGELOG.*$" ]
Original file line number Diff line number Diff line change @@ -597,6 +597,9 @@ def package_list_from_file(file):
597597# skip false positive linkcheck errors from anchors
598598linkcheck_anchors = False
599599
600+ # A timeout value, in seconds, for the linkcheck builder.
601+ linkcheck_timeout = 10
602+
600603# ignore all links in any CHANGELOG file
601604linkcheck_exclude_documents = [r"^(.*\/)*CHANGELOG.*$" ]
602605
You can’t perform that action at this time.
0 commit comments