Changeset f131ba8 for python/lib/moresetuptools.py
- Timestamp:
- Jan 21, 2017, 11:17:03 PM (8 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/moresetuptools.py
r227aa1c rf131ba8 37 37 38 38 def get_aubio_pyversion(): 39 # convert to version for python according to pep 440 40 # see https://www.python.org/dev/peps/pep-0440/ 39 41 verstr = get_aubio_version() 40 42 if '~alpha' in verstr: 41 43 verstr = verstr.split('~')[0] + 'a1' 44 # TODO: add rc, .dev, and .post suffixes, add numbering 42 45 return verstr 43 46 … … 117 120 ] 118 121 # samplerate only works with float 119 if usedouble ==False:122 if usedouble is False: 120 123 packages += ['samplerate'] 121 124 else:
Note: See TracChangeset
for help on using the changeset viewer.