Skip to content

Commit ced6911

Browse files
authored
Add comment to new function to save json file in gen_quick_start_module.py
1 parent ea10e60 commit ced6911

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
@@ -78,6 +78,9 @@ def write_published_versions(versions):
7878
with open(BASE_DIR / "published_versions.json", "w") as outfile:
7979
json.dump(versions, outfile, indent=2)
8080

81+
# Create release matrix for PyTorch website.
82+
# It's utilized to populate config data for
83+
# the "Start Locally" installation options table.
8184
def write_release_matrix(matrix):
8285
with open(BASE_DIR / "release_matrix.json", "w") as outfile:
8386
json.dump(versions, outfile, indent=2)

0 commit comments

Comments
 (0)