From bf7cd5eb82c82b52774faaade09e7fc51e8a7117 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Mon, 11 Oct 2021 14:22:52 -0700 Subject: [PATCH] Pin pip==21.2.4 everywhere (#696) Signed-off-by: Eduardo Apolinario Co-authored-by: Eduardo Apolinario --- .github/workflows/pythonbuild.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonbuild.yml b/.github/workflows/pythonbuild.yml index 25b9f69eba..7fbb4a6196 100644 --- a/.github/workflows/pythonbuild.yml +++ b/.github/workflows/pythonbuild.yml @@ -31,7 +31,7 @@ jobs: key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.txt', format('requirements{0}.txt', matrix.spark-version-suffix))) }} - name: Install dependencies run: | - python -m pip install --upgrade pip setuptools wheel + python -m pip install --upgrade pip==21.2.4 setuptools wheel make setup${{ matrix.spark-version-suffix }} pip freeze - name: Test with coverage @@ -111,7 +111,7 @@ jobs: ${{ runner.os }}-pip- - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip==21.2.4 pip install -r dev-requirements.txt - name: Lint run: | @@ -133,7 +133,7 @@ jobs: python-version: 3.8 - name: Install dependencies run: | - python -m pip install --upgrade pip setuptools wheel + python -m pip install --upgrade pip==21.2.4 setuptools wheel pip install -r doc-requirements.txt - name: Build the documentation run: make -C docs html