Return tau_effective from compute_Sv and update tau_effective handlin… #432
This file contains hidden or 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
| # Publish archives to PyPI and TestPyPI using GitHub Actions | |
| name: Publish to PyPI | |
| # Only run for tagged releases | |
| on: | |
| release: | |
| types: | |
| - released | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build-artifact: | |
| name: Build echopype package | |
| runs-on: ubuntu-22.04 | |
| if: github.repository == 'OSOceanAcoustics/echopype' || github.event_name == 'workflow_dispatch' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| # fetch all history so that setuptools-scm works | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: 3.12 | |
| - name: Install build frontend | |
| run: python -m pip install --upgrade pip build | |
| # This step is only necessary for testing purposes and for TestPyPI | |
| - name: Fix up version string for TestPyPI | |
| if: ${{ !startsWith(github.ref, 'refs/tags') || github.event_name == 'workflow_dispatch' }} | |
| run: | | |
| # Change setuptools-scm local_scheme to "no-local-version" so the | |
| # local part of the version isn't included, making the version string | |
| # compatible with PyPI. | |
| sed --in-place "s/node-and-date/no-local-version/g" pyproject.toml | |
| - name: Build source and wheel distributions | |
| run: | | |
| python -m build | |
| echo "" | |
| echo "Generated files:" | |
| ls -lh dist/ | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: releases | |
| path: dist | |
| test-built-dist: | |
| name: Test echopype package | |
| needs: build-artifact | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/setup-python@v6.2.0 | |
| name: Install Python | |
| with: | |
| python-version: 3.12 | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: releases | |
| path: dist | |
| - name: List contents of built dist | |
| run: | | |
| ls -ltrh | |
| ls -ltrh dist | |
| - name: Publish to Test PyPI | |
| uses: pypa/gh-action-pypi-publish@v1.14.0 | |
| with: | |
| password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
| repository-url: https://test.pypi.org/legacy/ | |
| verbose: true | |
| skip-existing: true | |
| - name: Check pypi packages | |
| run: | | |
| sleep 3 | |
| python -m pip install --upgrade pip | |
| echo "=== Testing wheel file ===" | |
| # Install wheel to get dependencies and check import | |
| python -m pip install --extra-index-url https://test.pypi.org/simple --upgrade --pre echopype | |
| python -c "import echopype; print(echopype.__version__)" | |
| echo "=== Done testing wheel file ===" | |
| echo "=== Testing source tar file ===" | |
| # Install tar gz and check import | |
| python -m pip uninstall --yes echopype | |
| python -m pip install --extra-index-url https://test.pypi.org/simple --upgrade --pre --no-binary=:all: echopype | |
| python -c "import echopype; print(echopype.__version__)" | |
| echo "=== Done testing source tar file ===" | |
| publish-pypi: | |
| name: Push echopype to production pypi | |
| needs: test-built-dist | |
| if: startsWith(github.ref, 'refs/tags') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: releases | |
| path: dist | |
| - name: Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@v1.14.0 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} |