Skip to content

Migrate to uv and update python version support #323

Migrate to uv and update python version support

Migrate to uv and update python version support #323

Workflow file for this run

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