From 2f4e0b9edcd31e88b46eef97af0519999e6f6bd9 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Wed, 28 Jun 2023 18:12:29 -0700 Subject: [PATCH] CI: Don't rebuild pandas before running tests --- .github/actions/build_pandas/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/build_pandas/action.yml b/.github/actions/build_pandas/action.yml index b1829e651443b..2d6b0aada4abd 100644 --- a/.github/actions/build_pandas/action.yml +++ b/.github/actions/build_pandas/action.yml @@ -14,6 +14,13 @@ runs: micromamba list shell: bash -el {0} + - name: Uninstall existing Pandas installation + run: | + if pip list | grep -q ^pandas; then + pip uninstall -y pandas || true + fi + shell: bash -el {0} + - name: Build Pandas run: | if [[ ${{ inputs.editable }} == "true" ]]; then