diff --git a/.github/workflows/nightly-tests-ubuntu-cuda.yml b/.github/workflows/nightly-tests-ubuntu-cuda.yml index 898772d..9985003 100644 --- a/.github/workflows/nightly-tests-ubuntu-cuda.yml +++ b/.github/workflows/nightly-tests-ubuntu-cuda.yml @@ -84,11 +84,11 @@ jobs: torch: ${{ matrix.torch }} shell: bash run: | - sudo apt update - sudo apt install libsndfile1-dev libsndfile1 ffmpeg + sudo apt-get update + sudo apt-get install -y libsndfile1-dev libsndfile1 ffmpeg python3 -m pip install --upgrade pip python3 -m pip install wheel twine typing_extensions soundfile - python3 -m pip install bs4 requests tqdm + python3 -m pip install bs4 requests tqdm numpy ./scripts/github_actions/install_torch.sh python3 -c "import torch; print('torch version:', torch.__version__)" diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 656a792..4a3a150 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -80,7 +80,7 @@ jobs: sudo apt install libsndfile1-dev libsndfile1 ffmpeg python3 -m pip install --upgrade pip python3 -m pip install wheel twine typing_extensions soundfile - python3 -m pip install bs4 requests tqdm + python3 -m pip install bs4 requests tqdm numpy ./scripts/github_actions/install_torch.sh python3 -c "import torch; print('torch version:', torch.__version__)" @@ -91,7 +91,7 @@ jobs: run: | python3 -m pip install -qq --upgrade pip python3 -m pip install -qq wheel twine typing_extensions soundfile - python3 -m pip install -qq torch==${{ matrix.torch }} + python3 -m pip install -qq torch==${{ matrix.torch }} numpy python3 -c "import torch; print('torch version:', torch.__version__)"