Add import guard for legacy models, fix tests for 3.14 #19
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: Publish to PyPI | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| # TODO: Only on CI success | |
| jobs: | |
| build-and-test-publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Build and publish to pypi | |
| uses: JRubics/[email protected] | |
| with: | |
| pypi_token: ${{ secrets.pypi_password }} |