Skip to content

Commit 1ca7573

Browse files
committed
Add comment to new function to save json file in gen_quick_start_module.py
1 parent c64bb4f commit 1ca7573

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/gen_quick_start_module.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ def write_published_versions(versions):
8383
with open(BASE_DIR / "published_versions.json", "w") as outfile:
8484
json.dump(versions, outfile, indent=2)
8585

86+
# Create release matrix for PyTorch website.
87+
# It's utilized to populate config data for
88+
# the "Start Locally" installation options table.
8689
def write_release_matrix(matrix):
8790
with open(BASE_DIR / "release_matrix.json", "w") as outfile:
8891
json.dump(matrix, outfile, indent=2)

0 commit comments

Comments
 (0)