From 5f815439686fb7a374a8440e017db0ec3f63f3db Mon Sep 17 00:00:00 2001 From: Philip Potter Date: Tue, 5 Nov 2024 12:57:26 +0000 Subject: [PATCH] Tidy up build (#2045) After #2028, we don't need these conditionals. --- .github/workflows/ci.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ac8f32c19d..21774e6507 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -92,10 +92,6 @@ jobs: matrix: pydantic: ["1", "2"] python-version: ${{ fromJson(needs.build-python.outputs.python-versions) }} - exclude: - # Pydantic 2 is not supported on Python 3.7 - - pydantic: "2" - python-version: "3.7" steps: - name: Download pre-built packages uses: actions/download-artifact@v4 @@ -115,7 +111,6 @@ jobs: echo TOX_PYTHON=py$(echo "${{ matrix.python-version }}" | tr -d .) >>$GITHUB_ENV uv pip install --system tox - run: uv pip install --system tox-uv - if: matrix.python-version != '3.7' - name: Remove src to ensure tests run against wheel run: rm -rf python/cog - name: Test