]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
remove duplicated pip update command
authorFederico Caselli <cfederico87@gmail.com>
Wed, 8 Apr 2020 22:43:48 +0000 (00:43 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Wed, 8 Apr 2020 22:43:48 +0000 (00:43 +0200)
Change-Id: I5f1d888a13dbdf4c9ded85a6922c9ffcdaea5a0f

.github/workflows/create-wheels.yaml

index 05a9fa0ba5437f35aaa5f1ddee40b3bdecdd7d81..21ab6cfb9712eb7dfae49684e19165e125c3c3fd 100644 (file)
@@ -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