Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kamo-naoyuki committed May 12, 2022
1 parent 6e9035d commit b0050d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
requirements = {
"install": [
"setuptools>=38.5.1",
"packaging",
"configargparse>=1.2.1",
"typeguard>=2.7.0",
"humanfriendly",
Expand Down
6 changes: 4 additions & 2 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ endif

all: kaldi showenv python conda_packages.done sctk.done sph2pipe.done check_install

python: activate_python.sh espnet.done pytorch.done chainer.done fairscale.done torch_optimizer.done
python: activate_python.sh packaging.done espnet.done pytorch.done chainer.done fairscale.done torch_optimizer.done
extra: warp-ctc.done warp-transducer.done chainer_ctc.done nkf.done moses.done mwerSegmenter.done pesq kenlm.done pyopenjtalk.done py3mmseg.done beamformit.done fairseq.done s3prl.done k2.done transformers.done phonemizer.done longformer.done

kaldi:
Expand Down Expand Up @@ -84,8 +84,10 @@ sph2pipe.done:
./installers/install_sph2pipe.sh
touch sph2pipe.done

packaging.done: activate_python.sh
. ./activate_python.sh && python3 -m pip install packaging

pytorch.done: activate_python.sh
pytorch.done: activate_python.sh packaging.done
ifeq ($(strip $(USE_CONDA)),)
# NOTE(kan-bayashi): Temporary fixed numpy version
. ./activate_python.sh && pip install "numpy<=1.21.3"
Expand Down

0 comments on commit b0050d9

Please sign in to comment.