From 84d5dd0092ab22b7cd772204487ee7b56b28612c Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Mon, 17 Jun 2024 16:44:57 -0700 Subject: [PATCH] Gracefully ignore issues linking Python --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 18034ad6b..7a066a4a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: apt install -y nodejs python3 python3-setuptools git build-essential ffmpeg libsm6 libxext6 pip uninstall -y $(pip list --format=freeze | grep opencv) && rm -rf /usr/local/lib/python3.10/dist-packages/cv2/ || rm -rf /usr/local/lib/python3.11/dist-packages/cv2/ || rm -rf /usr/local/lib/python3.12/dist-packages/cv2/ - ln -s `which python3` /usr/bin/python + ln -s `which python3` /usr/bin/python || true - uses: actions/checkout@v4 - name: Install dependencies run: |