From 0b01b45d7b9d56fd58d329c7df94fd162c2ea193 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 27 May 2022 23:18:57 +0200 Subject: [PATCH] install wheel by python --- .github/actions/setup/action.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index 1a954349ef..a4f098921b 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -45,7 +45,8 @@ runs: shell: bash run: | python3 -m pip install -U pip - pip3 install invoke wheel + sudo apt-get install python-wheel + pip3 install invoke - name: Install Specific Python Dependencies if: ${{ inputs.pip-dependency }} shell: bash