Migrate to uv and update python version support (#558) #324
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 | |
| on: | |
| push: | |
| branches: ["dev"] | |
| tags: ["*"] | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - { name: "3.10", python: "3.10", tox: py310 } | |
| - { name: "3.14", python: "3.14", tox: py314 } | |
| - { name: "lowest", python: "3.10", tox: py310-lowest } | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| - name: Download nltk data | |
| run: | | |
| uv run python -m textblob.download_corpora | |
| - run: uv run tox -e${{ matrix.tox }} | |
| build: | |
| name: Build package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| - name: Build a binary wheel and a source tarball | |
| run: uv build | |
| - name: Check build | |
| run: uvx twine check --strict dist/* | |
| - name: Store the distribution packages | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: python-package-distributions | |
| path: dist/ | |
| # this duplicates pre-commit.ci, so only run it on tags | |
| # it guarantees that linting is passing prior to a release | |
| lint-pre-release: | |
| if: startsWith(github.ref, 'refs/tags') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| - run: uv run tox -e lint | |
| publish-to-pypi: | |
| name: PyPI release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: [build, tests, lint-pre-release] | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/textblob | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Download all the dists | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: python-package-distributions | |
| path: dist/ | |
| - name: Publish distribution to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |