Skip to content

Commit

Permalink
ci: upgrade pip to avoid 21.3
Browse files Browse the repository at this point in the history
As documented in:
  - tpm2-software#247

pip 21.3 was broken with in-place (-e) installs and was fixed in pip
21.3.1. However, the CI is still stuck on pip 21.3 and thus is broken.
When patch 57428, which pins pip to a version lower than 21.3 was
reverted, we need something to get us after 21.3, so update pip.

Signed-off-by: William Roberts <william.c.roberts@intel.com>
  • Loading branch information
William Roberts committed Oct 28, 2021
1 parent 84704ee commit 9e1dae9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- name: Install dependencies
env:
TPM2_TSS_VERSION: ${{ matrix.tss-version }}
run: ./.ci/install-deps.sh
run: |
python3 -m pip install --user --upgrade pip>21.3
./.ci/install-deps.sh
- name: Check
env:
Expand Down

0 comments on commit 9e1dae9

Please sign in to comment.