From 02a737e53249e1d4d24e80128fc294db1faa6557 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 8 Feb 2022 21:45:42 +0200 Subject: [PATCH 1/2] Revert "[ci] Downgrade pip on MSVC jobs" This reverts commit c4cf5ddb272cb1c05a572db5b76629368f9054f5. --- .github/workflows/msvc-ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/msvc-ci.yml b/.github/workflows/msvc-ci.yml index a314e0ff2..22f22fc0b 100644 --- a/.github/workflows/msvc-ci.yml +++ b/.github/workflows/msvc-ci.yml @@ -30,10 +30,6 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 with: arch : ${{ matrix.ARCH }} - # https://github.com/mesonbuild/meson/issues/9955#issuecomment-1030843844 - - name: Downgrade pip - run: | - python -m pip install -U pip==21.3.1 - name: Install Dependencies run: | pip install --upgrade meson ninja fonttools From e045dbf6174413eafea2169a7987b44b57a6bf84 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Thu, 10 Feb 2022 04:06:20 +0200 Subject: [PATCH 2/2] [ci] Upgrade pip on MSVC job To avoid bad pre-installed version. --- .github/workflows/msvc-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/msvc-ci.yml b/.github/workflows/msvc-ci.yml index 22f22fc0b..77ffed056 100644 --- a/.github/workflows/msvc-ci.yml +++ b/.github/workflows/msvc-ci.yml @@ -30,6 +30,9 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 with: arch : ${{ matrix.ARCH }} + - name: Upgrade pip + run: | + python -m pip install -U pip - name: Install Dependencies run: | pip install --upgrade meson ninja fonttools