Skip to content

Commit 51d4fea

Browse files
authored
Limit the number of historical document versions (#372)
1 parent db9012f commit 51d4fea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sphinx_doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_recent_tags(n: int) -> list:
7373
return []
7474

7575

76-
smv_tag_whitelist = r"^(" + "|".join(get_recent_tags(4)) + r")$"
76+
smv_tag_whitelist = r"^(" + "|".join(get_recent_tags(2)) + r")$"
7777
smv_branch_whitelist = r"^(main)$" # included branches
7878
smv_remote_whitelist = None
7979

0 commit comments

Comments
 (0)