From e888dfdabcfcd03330477cb5de3c25c21029f425 Mon Sep 17 00:00:00 2001
From: Victorien <65306057+Viicos@users.noreply.github.com>
Date: Tue, 12 Nov 2024 19:09:13 +0100
Subject: [PATCH] Fix Pydantic third party integration tests (#504)

---
 .github/workflows/third_party.yml | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/.github/workflows/third_party.yml b/.github/workflows/third_party.yml
index cf58d2a0..9ecad7b1 100644
--- a/.github/workflows/third_party.yml
+++ b/.github/workflows/third_party.yml
@@ -52,10 +52,6 @@ jobs:
         uses: actions/checkout@v4
         with:
           repository: pydantic/pydantic
-      - name: Edit pydantic pyproject.toml
-        # pydantic's python-requires means pdm won't let us add typing-extensions-latest
-        # as a requirement unless we do this
-        run: sed -i 's/^requires-python = .*/requires-python = ">=3.8"/' pyproject.toml
       - name: Checkout typing_extensions
         uses: actions/checkout@v4
         with:
@@ -67,7 +63,7 @@ jobs:
       - name: Add local version of typing_extensions as a dependency
         run: uv add --editable ./typing-extensions-latest
       - name: Install pydantic test dependencies
-        run: uv sync --group testing --group dev
+        run: uv sync --group dev
       - name: List installed dependencies
         run: uv pip list
       - name: Run pydantic tests