diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index c1e8325..2136461 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -17,7 +17,7 @@ jobs: uses: astral-sh/setup-uv@v7 - name: Set up Python - run: uv python install 3.13 + run: uv python install 3.14 - name: Install dependencies run: uv sync diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da1d8d5..ea8353c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] services: postgres: @@ -92,7 +92,7 @@ jobs: uv run pytest --cov --cov-report=xml --cov-report=term-missing - name: Upload coverage to Codecov - if: matrix.python-version == '3.13' + if: matrix.python-version == '3.14' uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.python-version b/.python-version index 24ee5b1..6324d40 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.13 +3.14 diff --git a/pyproject.toml b/pyproject.toml index 502bb5e..b8053e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries", "Topic :: Software Development",