From 27d8c5ba72c55de63d0ff52511c770fcbe01bd40 Mon Sep 17 00:00:00 2001 From: "Gabriele N. Tornetta" Date: Tue, 14 Oct 2025 19:49:19 +0100 Subject: [PATCH] ci: test with Python 3.14 --- .github/workflows/tests.yml | 6 +++--- README.md | 2 +- pyproject.toml | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1a7afcd..11ab968 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] name: Tests with Python ${{ matrix.python-version }} on Linux steps: @@ -68,7 +68,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] name: Tests with Python ${{ matrix.python-version }} on MacOS steps: @@ -113,7 +113,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] name: Tests with Python ${{ matrix.python-version }} on Windows steps: diff --git a/README.md b/README.md index 905aba7..1ee0687 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ raw samples by aggregation. # Compatibility The latest `austin-python` package is tested on Linux, macOS and Windows with -Python 3.9-3.13. +Python 3.9-3.14. # Documentation diff --git a/pyproject.toml b/pyproject.toml index 457a599..7e3028b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] requires-python = ">=3.9" @@ -77,7 +78,7 @@ dependencies = [ tests = "pytest --cov=austin --cov-report=term-missing --cov-report=xml {args}" [[tool.hatch.envs.tests.matrix]] -python = ["3.9", "3.10", "3.11", "3.12", "3.13"] +python = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] [tool.hatch.envs.checks] python = "3.10"