Skip to content

Commit

Permalink
modify .github/workflows/tox.ini so os name check matches os names li…
Browse files Browse the repository at this point in the history
…sted, add .zip files to manifest.in
  • Loading branch information
bgenchel committed May 1, 2024
1 parent 5f78d3a commit ad479f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
- uses: actions/checkout@v3
- name: Install soundlibs Ubuntu
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y --fix-missing pkg-config libsndfile1 sox
if: matrix.os == 'Ubuntu'
if: matrix.os == 'ubuntu-latest'
- name: Install soundlibs MacOs
run: brew install libsndfile llvm libomp sox
if: matrix.os == 'MacOs'
if: matrix.os == 'macos-latest-xlarge'
- name: Install soundlibs Windows
run: choco install libsndfile sox
if: matrix.os == 'Windows'
if: matrix.os == 'windows-latest'
- name: Upgrade pip
run: python -m pip install -U pip
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include *.txt tox.ini *.rst *.md LICENSE
include catalog-info.yaml
recursive-include tests *.py *.wav *.npz *.jams
recursive-include tests *.py *.wav *.npz *.jams *.zip
recursive-include basic_pitch *.py
recursive-include basic_pitch/saved_models *.index *.pb variables.data* *.mlmodel *.json *.onnx *.tflite *.bin

0 comments on commit ad479f2

Please sign in to comment.