Changeset 2e40231 for setup.py


Ignore:
Timestamp:
Nov 28, 2016, 3:48:47 PM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/applefworks, fix/ffmpeg5, master, sampler, yinfft+
Children:
bab8e3d
Parents:
3820264
git-author:
Paul Brossier <piem@piem.org> (11/28/16 15:48:34)
git-committer:
Paul Brossier <piem@piem.org> (11/28/16 15:48:47)
Message:

setup.py, python/lib/: use sorted glob.glob to improve reproducibility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    r3820264 r2e40231  
    3838    extra_link_args += ['-framework','CoreFoundation', '-framework','AudioToolbox']
    3939
    40 sources = glob.glob(os.path.join('python', 'ext', '*.c'))
     40sources = sorted(glob.glob(os.path.join('python', 'ext', '*.c')))
    4141
    4242aubio_extension = Extension("aubio._aubio",
Note: See TracChangeset for help on using the changeset viewer.