Skip to content

fix: raise grpcio lower bound to >=1.80.0 for Python 3.9+ #14

fix: raise grpcio lower bound to >=1.80.0 for Python 3.9+

fix: raise grpcio lower bound to >=1.80.0 for Python 3.9+ #14

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: Build and install package
run: uv pip install -e .
- name: Verify import
run: uv run python -c "from tts_service_api import VERSION; print(VERSION.__version__)"