This commit is contained in:
ed 2022-03-03 01:26:29 +01:00
parent 8b2c7586ce
commit c9c4aac6cf
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ set -e
# install dependencies for audio-*.py
#
# linux/alpine: requires gcc g++ make cmake patchelf {python3,ffmpeg,fftw,libsndfile}-dev py3-{wheel,pip} py3-numpy{,-dev}
# linux/debian: requires libav{codec,device,filter,format,resample,util}-dev {libfftw3,python3}-dev python3-{numpy,pip} vamp-{plugin-sdk,examples} patchelf cmake
# linux/debian: requires libav{codec,device,filter,format,resample,util}-dev {libfftw3,python3,libsndfile1}-dev python3-{numpy,pip} vamp-{plugin-sdk,examples} patchelf cmake
# win64: requires msys2-mingw64 environment
# macos: requires macports
#

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (1, 2, 0)
VERSION = (1, 2, 1)
CODENAME = "ftp btw"
BUILD_DT = (2022, 2, 13)
BUILD_DT = (2022, 3, 3)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)