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 14
14
- " docs/**"
15
15
- " _notebooks"
16
16
- " 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/*"
18
23
- " setup.py"
19
24
- " pyproject.toml" # includes metadata used in the package creation
20
25
- " !*.md"
Original file line number Diff line number Diff line change @@ -444,5 +444,8 @@ def find_source():
444
444
# skip false positive linkcheck errors from anchors
445
445
linkcheck_anchors = False
446
446
447
+ # A timeout value, in seconds, for the linkcheck builder.
448
+ linkcheck_timeout = 10
449
+
447
450
# ignore all links in any CHANGELOG file
448
451
linkcheck_exclude_documents = [r"^(.*\/)*CHANGELOG.*$" ]
Original file line number Diff line number Diff line change @@ -407,5 +407,8 @@ def find_source():
407
407
# skip false positive linkcheck errors from anchors
408
408
linkcheck_anchors = False
409
409
410
+ # A timeout value, in seconds, for the linkcheck builder.
411
+ linkcheck_timeout = 10
412
+
410
413
# ignore all links in any CHANGELOG file
411
414
linkcheck_exclude_documents = [r"^(.*\/)*CHANGELOG.*$" ]
Original file line number Diff line number Diff line change @@ -597,6 +597,9 @@ def package_list_from_file(file):
597
597
# skip false positive linkcheck errors from anchors
598
598
linkcheck_anchors = False
599
599
600
+ # A timeout value, in seconds, for the linkcheck builder.
601
+ linkcheck_timeout = 10
602
+
600
603
# ignore all links in any CHANGELOG file
601
604
linkcheck_exclude_documents = [r"^(.*\/)*CHANGELOG.*$" ]
602
605
You can’t perform that action at this time.
0 commit comments