Skip to content

Commit

Permalink
use string for target-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz committed Nov 22, 2024
1 parent df92d8c commit df3e9e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/set_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

versions = json.loads(versions)

print(json.dumps([{"rust-version": version, "target-versions": versions[0:i+1] } for (i, version) in enumerate(versions)]))
print(json.dumps([{"rust-version": version, "target-versions": json.dumps(versions[0:i+1]) } for (i, version) in enumerate(versions)]))

0 comments on commit df3e9e7

Please sign in to comment.