Skip to content

Commit

Permalink
Merge pull request espnet#4376 from kamo-naoyuki/libsndfile
Browse files Browse the repository at this point in the history
Remove the restriction for libsndfile version
  • Loading branch information
kamo-naoyuki authored May 19, 2022
2 parents c54b585 + e047156 commit 9396ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ sox.done: activate_python.sh
. ./activate_python.sh && { command -v sox || conda install -y sox -c conda-forge; }
touch sox.done
sndfile.done: activate_python.sh
. ./activate_python.sh && { python3 -c "from ctypes.util import find_library as F; assert F('sndfile') is not None" || conda install -y libsndfile=1.0.28 -c conda-forge; }
. ./activate_python.sh && { python3 -c "from ctypes.util import find_library as F; assert F('sndfile') is not None" || conda install -y libsndfile -c conda-forge; }
touch sndfile.done
ifneq ($(strip $(USE_CONDA)),)
conda_packages.done: bc.done cmake.done flac.done ffmpeg.done sox.done sndfile.done
Expand Down

0 comments on commit 9396ed3

Please sign in to comment.