Skip to content

Commit 83a5062

Browse files
Ignore .ipynb_checkpoints in release checklist script (#543)
Ignore .ipynb_checkpoints
1 parent dcf7970 commit 83a5062

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: scripts/gen_release_checklist_issue.py

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
if file.is_file() and file.suffix in [".ipynb", ".md"]:
4141
if "_includes" in file.parts:
4242
continue
43+
if ".ipynb_checkpoints" in file.parts:
44+
continue
4345
if "index.md" in file.parts:
4446
rel_path = file.parent
4547
else:

0 commit comments

Comments
 (0)