Skip to content

Commit

Permalink
Fix package sorting in requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Oct 25, 2024
1 parent 4c561f8 commit 83353a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@
f.write(f"# pyodide == {pyodide}\n")
f.write("\n")

for name, version in sorted(packages.items()):
for name, version in sorted(packages.items(), key=lambda kv: kv[0].lower()):
f.write(f"{name} == {version}\n")

0 comments on commit 83353a7

Please sign in to comment.