Changeset f131ba8


Ignore:
Timestamp:
Jan 21, 2017, 11:17:03 PM (7 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/ffmpeg5, master, sampler, yinfft+
Children:
a7b14a6, f98063b
Parents:
227aa1c
Message:

python/lib/moresetuptools.py: add comments, improve syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/moresetuptools.py

    r227aa1c rf131ba8  
    3737
    3838def get_aubio_pyversion():
     39    # convert to version for python according to pep 440
     40    # see https://www.python.org/dev/peps/pep-0440/
    3941    verstr = get_aubio_version()
    4042    if '~alpha' in verstr:
    4143        verstr = verstr.split('~')[0] + 'a1'
     44    # TODO: add rc, .dev, and .post suffixes, add numbering
    4245    return verstr
    4346
     
    117120               ]
    118121    # samplerate only works with float
    119     if usedouble == False:
     122    if usedouble is False:
    120123        packages += ['samplerate']
    121124    else:
Note: See TracChangeset for help on using the changeset viewer.