diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6d4122f..d529453 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -12,6 +12,10 @@ jobs: build: name: Build and test runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] permissions: contents: read steps: @@ -23,7 +27,7 @@ jobs: - name: Set up uv uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 with: - python-version: "3.14" + python-version: ${{ matrix.python-version }} - name: Install run: | diff --git a/pyproject.toml b/pyproject.toml index d1dc6c4..d31ef20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,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", "Typing :: Typed", ]