minor fixes

This commit is contained in:
Fangjun Kuang 2023-07-26 17:02:00 +08:00
parent 5a5895d20b
commit 9fae1afa65

View File

@ -11,7 +11,7 @@ on:
jobs: jobs:
Test_pre_compiled_wheels: 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 }} runs-on: ${{ matrix.os }}
strategy: strategy:
fail-fast: false fail-fast: false
@ -32,6 +32,11 @@ jobs:
- name: Display Python version - name: Display Python version
run: python -c "import sys; print(sys.version)" run: python -c "import sys; print(sys.version)"
- name: Install dependencies
shell: bash
run: |
pip install numpy
- name: Install torch - name: Install torch
if: startsWith(matrix.os, 'macos') if: startsWith(matrix.os, 'macos')
shell: bash shell: bash