Skip to content

Commit 2a78a51

Browse files
authored
Merge pull request #4594 from Neradoc/patch-1
fix removing past releases from circuitpython.org
2 parents bd5a3a3 + b8d55d6 commit 2a78a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build_board_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def generate_download_info():
266266
# Delete the release we are replacing
267267
for board in current_info:
268268
info = current_info[board]
269-
for version in info["versions"]:
269+
for version in list(info["versions"]):
270270
previous_releases.add(version["version"])
271271
previous_languages.update(version["languages"])
272272
if version["stable"] == new_stable or (

0 commit comments

Comments
 (0)