feat: add support for python 3.14 (#15)

This commit is contained in:
d3vyce
2026-01-28 21:01:15 +01:00
committed by GitHub
parent aa72dc2eb5
commit 577e087321
4 changed files with 5 additions and 4 deletions

View File

@@ -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 }}