From: Federico Caselli Date: Wed, 8 Apr 2020 22:43:48 +0000 (+0200) Subject: remove duplicated pip update command X-Git-Tag: rel_1_4_0b1~395^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1369c42bff347a0fa60b19514db1e1d3e207954;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git remove duplicated pip update command Change-Id: I5f1d888a13dbdf4c9ded85a6922c9ffcdaea5a0f --- 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