diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 30d824f..061a2e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - uses: ./.github/actions/python-poetry-env diff --git a/CHANGELOG.md b/CHANGELOG.md index c286960..3c980a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] ### Added - Support for pytest 9.x +- Support for Python 3.14 ### Changed - Migrated `poetry.dev-dependencies` to `poetry.group.dev.dependencies` diff --git a/pyproject.toml b/pyproject.toml index 0946709..d3076ff 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", "Typing :: Typed", ]