From 946cbabac2d9d14ba67992126bef8517c65ff0f0 Mon Sep 17 00:00:00 2001 From: Andrei Stoian <95410270+andrei-stoian-zama@users.noreply.github.com> Date: Sun, 29 Sep 2024 10:49:42 +0200 Subject: [PATCH] fix: pip installation failing on new python version (#903) --- .github/workflows/continuous-integration.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 1cbf59b37..e2d4d98a1 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -935,9 +935,9 @@ jobs: ./script/make_utils/check_installation_with_all_python.sh --version ${{ matrix.python_version }} --sync_env # Check installation with pip - - name: Check installation with pip and python ${{ matrix.python_version }} (weekly, release) + - name: Check installation with pip and python ${{ matrix.python_version }} (weekly) if: | - (fromJSON(env.IS_WEEKLY) || fromJSON(env.IS_RELEASE)) + (fromJSON(env.IS_WEEKLY)) && steps.conformance.outcome == 'success' && !cancelled() run: |