Skip to content

Commit a0a3825

Browse files
committed
Allow reproducible build
With this patch, building the Debian package is now predictible and always the same. See Debian bug report here: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799206
1 parent d97dfe4 commit a0a3825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def get_version():
5757

5858
# Add all optional dependencies to testing requirements.
5959
test_all = []
60-
for name, requirements in extras_require.items():
60+
for name, requirements in sorted(extras_require.items()):
6161
test_all += requirements
6262
extras_require['test_all'] = test_all
6363

0 commit comments

Comments
 (0)