Update librosa requirement from <=0.7.0 to <=0.10.1 #154
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
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 }} |