Skip to content

Commit

Permalink
ci: add depency for librosa (#121)
Browse files Browse the repository at this point in the history
* ci: add depency for librosa

* chore: link to associated PR

* ci: add sudo

* docs: fix typo
  • Loading branch information
deepcharles authored Feb 12, 2021
1 parent 68074b7 commit 743eb5d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ on:

jobs:
docs:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install sndfile library # for librose, see https://github.com/deepcharles/ruptures/pull/121
run: |
sudo apt-get install libsndfile1-dev
- name: Install ruptures and dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish-doc-to-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ on:

jobs:
docs:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install sndfile library # for librose, see https://github.com/deepcharles/ruptures/pull/121
run: |
sudo apt-get install libsndfile1-dev
- name: Install ruptures and dependecies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/music-segmentation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"\n",
"Music segmentation can be seen as a change point detection task and therefore can be carried out with `ruptures`.\n",
"Roughly, it consists in finding the temporal boundaries of meaningful sections, e.g. the intro, verse, chorus and outro in a song.\n",
"This is an important task in the filed of music information retrieval.\n",
"This is an important task in the field of music information retrieval.\n",
"\n",
"The adopted approach is summarized as follows:\n",
"\n",
Expand Down

0 comments on commit 743eb5d

Please sign in to comment.