From d1369c42bff347a0fa60b19514db1e1d3e207954 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Thu, 9 Apr 2020 00:43:48 +0200 Subject: [PATCH] remove duplicated pip update command Change-Id: I5f1d888a13dbdf4c9ded85a6922c9ffcdaea5a0f --- .github/workflows/create-wheels.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 05a9fa0ba5..21ab6cfb97 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -71,14 +71,13 @@ jobs: # `--no-deps` is used to only generate the wheel for the current library. Redundant in sqlalchemy since it has no dependencies run: | python -m pip install --upgrade pip + pip --version pip install setuptools wheel pip wheel -w dist --no-use-pep517 -v --no-deps . - name: Install wheel # install the created wheel without using the pypi index run: | - pip install -U pip - pip --version pip install -f dist --no-index sqlalchemy - name: Check c extensions -- 2.47.3