Skip to content

Commit 5112bad

Browse files
Include deps sorting like done on main
1 parent ea13746 commit 5112bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_pip_deps_from_conda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def main(conda_fname, pip_fname):
127127
f"# This file is auto-generated by scripts/generate_pip_deps_from_conda.py, "
128128
"do not modify.\n# See that file for comments about the need/usage of each dependency.\n\n"
129129
)
130-
pip_content = header + "\n".join(pip_deps) + "\n"
130+
pip_content = header + "\n".join(sorted(pip_deps)) + "\n"
131131

132132
with open(pip_fname, "w") as pip_fd:
133133
pip_fd.write(pip_content)

0 commit comments

Comments
 (0)