Skip to content

Update librosa requirement from <=0.7.0 to <=0.10.1 #154

Update librosa requirement from <=0.7.0 to <=0.10.1

Update librosa requirement from <=0.7.0 to <=0.10.1 #154

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [created]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- if: ${{ github.event_name == 'release' }}
name: Publish Release to PyPi
uses: dciborow/[email protected]
with:
pypi_publish: true
pypi_password: ${{ secrets.PYPI_PASSWORD }}
- if: ${{ github.event_name == 'push' }}
name: Publish RC to PyPi
uses: dciborow/[email protected]
with:
pypi_publish: true
pypi_password: ${{ secrets.PYPI_PASSWORD }}
version_suffix: -rc${{ github.run_number }}-post${{ github.run_attempt }}
- if: ${{ github.event_name == 'pull_request' }}
name: Publish Snapshot to TestPyPi
uses: dciborow/[email protected]
with:
pypi_publish: true
pypi_password: ${{ secrets.TEST_PYPI_PASSWORD }}
pypi_repo: testpypi
version_suffix: -post${{ github.run_number }}-dev${{ github.run_attempt }}