diff --git a/.github/workflows/Tests.yaml b/.github/workflows/Tests.yaml index 2f3a771..6f27ff3 100644 --- a/.github/workflows/Tests.yaml +++ b/.github/workflows/Tests.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/pyproject.toml b/pyproject.toml index b2a0918..7f1360c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ dev = [ "black", "isort", "pytest", + "pytest-github-actions-annotate-failures", ] docs = [ "sphinx>=7.2", @@ -35,7 +36,7 @@ where = ["src"] [tool.black] target-version = ["py39"] line-length = 80 -preview = "true" +preview = true enable-unstable-feature = ["string_processing"] [tool.isort]