From 9fae1afa6551b06ff61e64421aaff1ec63d4d587 Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Wed, 26 Jul 2023 17:02:00 +0800 Subject: [PATCH] minor fixes --- .github/workflows/test-wheels.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-wheels.yml b/.github/workflows/test-wheels.yml index 7b32d4d..e562ec7 100644 --- a/.github/workflows/test-wheels.yml +++ b/.github/workflows/test-wheels.yml @@ -11,7 +11,7 @@ on: jobs: Test_pre_compiled_wheels: - name: ${{ matrix.os }} ${{ github.event.inputs.torch_version }} {{ github.event.inputs.kaldifeat_version }} ${{ matrix.python-version }} + name: ${{ matrix.os }} ${{ github.event.inputs.torch_version }} ${{ github.event.inputs.kaldifeat_version }} ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -32,6 +32,11 @@ jobs: - name: Display Python version run: python -c "import sys; print(sys.version)" + - name: Install dependencies + shell: bash + run: | + pip install numpy + - name: Install torch if: startsWith(matrix.os, 'macos') shell: bash