Skip to content

Commit 93521d7

Browse files
committed
Freeze package listing in case insensitive order
1 parent 4087145 commit 93521d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pip/commands/freeze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ def run(self, options, args):
125125
'## The following requirements were added by pip --freeze:\n'
126126
)
127127
for installation in sorted(
128-
installations.values(), key=lambda x: x.name):
128+
installations.values(), key=lambda x: x.name.lower()):
129129
f.write(str(installation))

0 commit comments

Comments
 (0)