Skip to content

Commit

Permalink
Merge pull request #52 from bbc/update-librosa
Browse files Browse the repository at this point in the history
Update librosa to v0.10.2 to fix Python 3.12 compatibility issues.
  • Loading branch information
stephenjolly authored May 16, 2024
2 parents 2e948a3 + a275783 commit e45c5dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install FFMPEG (Windows-only)
if: ${{ matrix.os == 'windows-latest' }}
uses: FedericoCarboni/setup-ffmpeg@v1
uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg

- name: Install FFMPEG (Non-Windows)
Expand All @@ -39,7 +39,7 @@ jobs:
fi
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
librosa==0.9.1
librosa==0.10.2
matplotlib==3.7.3
numpy==1.22.0
pytest==6.2.5
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers =
[options]
packages = find:
install_requires =
librosa >= 0.9.1
librosa >= 0.10.2
matplotlib >= 3.7.3
numpy >= 1.22.0
scipy >= 1.10.0
Expand Down

0 comments on commit e45c5dc

Please sign in to comment.