8000 Merge pull request #8747 from bmwiedemann/sort · matplotlib/matplotlib@545af7a · GitHub
[go: up one dir, main page]

Skip to content

Commit 545af7a

Browse files
authored
Merge pull request #8747 from bmwiedemann/sort
sort input files
2 parents 166a144 + 88f037b commit 545af7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ def add_flags(self, ext):
13411341
default_libraries=['qhull'])
13421342
else:
13431343
ext.include_dirs.append('extern')
1344-
ext.sources.extend(glob.glob('extern/libqhull/*.c'))
1344+
ext.sources.extend(sorted(glob.glob('extern/libqhull/*.c')))
13451345

13461346

13471347
class TTConv(SetupPackage):

0 commit comments

Comments
 (0)
0