From 5383450c3c31f1f0754bb2c43949ca0e37d1f6df Mon Sep 17 00:00:00 2001 From: svlandeg Date: Tue, 7 Oct 2025 11:46:29 +0200 Subject: [PATCH] remove py3.14 stuff again --- .github/workflows/test.yml | 10 +--------- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1d645f59..b76afe01e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,7 +48,6 @@ jobs: strategy: matrix: python-version: - - "3.14" - "3.13" - "3.12" - "3.11" @@ -56,9 +55,6 @@ jobs: - "3.9" - "3.8" pydantic-version: ["pydantic-v1", "pydantic-v2"] - exclude: - - python-version: "3.14" - pydantic-version: "pydantic-v1" fail-fast: false steps: - name: Dump GitHub context @@ -70,7 +66,6 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - allow-prereleases: true - name: Setup uv uses: astral-sh/setup-uv@v6 with: @@ -79,16 +74,13 @@ jobs: cache-dependency-glob: | requirements**.txt pyproject.toml - - name: Preinstall Pydantic 2.12.0a1 for Python 3.14 - if: matrix.python-version == '3.14' - run: uv pip install --pre "pydantic==2.12.0a1" - name: Install Dependencies run: uv pip install -r requirements-tests.txt - name: Install Pydantic v1 if: matrix.pydantic-version == 'pydantic-v1' run: uv pip install "pydantic>=1.10.0,<2.0.0" - name: Install Pydantic v2 - if: matrix.pydantic-version == 'pydantic-v2' && matrix.python-version != '3.14' + if: matrix.pydantic-version == 'pydantic-v2' run: uv pip install --upgrade "pydantic>=2.0.2,<3.0.0" # TODO: Remove this once Python 3.8 is no longer supported - name: Install older AnyIO in Python 3.8 diff --git a/pyproject.toml b/pyproject.toml index 8e0ccde54..fbfdea79a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,6 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.14", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Internet :: WWW/HTTP", ]