Update casaplotms requirement from >=2.7.4 to >=2.8.2 #20
Workflow file for this run
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
| name: Build and upload to PyPI | |
| on: [push, pull_request] | |
| jobs: | |
| build_sdist_and_wheel: | |
| name: Build source distribution | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| name: Install Python | |
| with: | |
| python-version: "3.12" | |
| - name: Install build | |
| run: python -m pip install build | |
| - name: Build sdist | |
| run: python -m build --sdist --wheel --outdir dist/ . | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| path: dist/* | |
| # upload_pypi: | |
| # name: Upload to PyPI | |
| # needs: [build_sdist_and_wheel] | |
| # runs-on: ubuntu-latest | |
| # if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
| # steps: | |
| # - uses: actions/download-artifact@v7 | |
| # with: | |
| # name: artifact | |
| # path: dist | |
| # - uses: pypa/gh-action-pypi-publish@release/v1 | |
| # with: | |
| # user: __token__ | |
| # password: ${{ secrets.PYPI_API_TOKEN }} |