Skip to content

Commit

Permalink
fix: order pip requirements when converting to keep a constant hash
Browse files Browse the repository at this point in the history
Signed-off-by: Jer <[email protected]>
  • Loading branch information
samson-jerome authored Sep 24, 2024
1 parent 8476696 commit 41856af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rez/utils/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def get_rez_requirements(installed_dist, python_version, name_casings=None):
#
# See: vendor/distlib/metadata.py#line-892
#
requires = installed_dist.run_requires
requires = sorted(installed_dist.run_requires)

# filter requirements
for req_ in requires:
Expand Down

0 comments on commit 41856af

Please sign in to comment.