Skip to content

Commit

Permalink
Sort input file list (#49)
Browse files Browse the repository at this point in the history
so that datrie builds in a reproducible way
in spite of indeterministic filesystem readdir order
and http://bugs.python.org/issue30461
  • Loading branch information
bmwiedemann authored and superbobry committed Mar 13, 2018
1 parent 980a8a7 commit fcde575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup, Extension

LIBDATRIE_DIR = 'libdatrie'
LIBDATRIE_FILES = glob.glob(os.path.join(LIBDATRIE_DIR, "datrie", "*.c"))
LIBDATRIE_FILES = sorted(glob.glob(os.path.join(LIBDATRIE_DIR, "datrie", "*.c")))

DESCRIPTION = __doc__
LONG_DESCRIPTION = open('README.rst').read() + open('CHANGES.rst').read()
Expand Down

0 comments on commit fcde575

Please sign in to comment.