Bump dependencies for NumPy 2 compatibility #415
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Link repository with GitHub Actions | |
# https://docs.github.com/en/actions/learn-github-actions/introduction-to-github-actions | |
name: run-tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install libsndfile | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get install -y libsndfile1 | |
- name: Install dependencies | |
run: uv sync --all-extras | |
- name: Run tests | |
run: uv run pytest | |
- name: Check source code format | |
run: uv run black --check --diff . | |
test-deb10-i386: | |
runs-on: ubuntu-latest | |
container: i386/debian:10 | |
steps: | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install -y --no-install-recommends \ | |
python3-matplotlib \ | |
python3-numpy \ | |
python3-pandas \ | |
python3-requests \ | |
python3-scipy \ | |
python3-soundfile \ | |
python3-pytest \ | |
git | |
# Note: "actions/checkout@v2" requires libstdc++6:amd64 to be | |
# installed in the container. To keep things simple, use | |
# "actions/checkout@v1" instead. | |
# https://github.com/actions/checkout/issues/334 | |
- uses: actions/checkout@v1 | |
- name: Run tests | |
run: | | |
pytest-3 | |
build-documentation: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r docs/requirements.txt | |
- name: Build documentation | |
run: | | |
cd docs | |
make html |