From c9bee6fe65e131d3e00c6f77ce2303c9617224ae Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 9 Jan 2022 18:44:06 +0100 Subject: [PATCH] Require wheel to be installed before installing requirements. --- .github/workflows/UnitTesting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/UnitTesting.yml b/.github/workflows/UnitTesting.yml index b006c52..de622f5 100644 --- a/.github/workflows/UnitTesting.yml +++ b/.github/workflows/UnitTesting.yml @@ -80,7 +80,7 @@ jobs: - name: 🔧 Install dependencies run: | - python -m pip install -U pip + python -m pip install -U pip wheel python -m pip install ${{ inputs.requirements }} - name: ☑ Run unit tests