diff options
| -rw-r--r-- | .azure-pipelines/wheel-builder.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.azure-pipelines/wheel-builder.yml b/.azure-pipelines/wheel-builder.yml index 7e7ffd0e3..3d867c7f4 100644 --- a/.azure-pipelines/wheel-builder.yml +++ b/.azure-pipelines/wheel-builder.yml @@ -35,6 +35,8 @@ jobs: displayName: Create virtualenv - script: .venv/bin/pip install -U wheel displayName: Update wheel to the latest version + - script: .venv/bin/pip install -U pip==10.0.1 + displayName: Downgrade pip lol - script: .venv/bin/pip install cffi six asn1crypto ipaddress "enum34; python_version < '3'" displayName: Install our Python dependencies @@ -84,6 +86,8 @@ jobs: steps: - script: /opt/python/$PYTHON_VERSION/bin/python -m virtualenv .venv displayName: Create virtualenv + - script: .venv/bin/pip install -U pip==10.0.1 + displayName: Downgrade pip lol - script: .venv/bin/pip install cffi six asn1crypto ipaddress enum34 displayName: Install our Python dependencies - script: | @@ -181,6 +185,8 @@ jobs: OPENSSL_DIR: 'OpenSSL-Win64-2015' WINDOWS_ARCH: 'x86_64' steps: + - script: '"C:/Python%PYTHON_VERSION%/python.exe" -m pip install -U pip==10.0.1' + displayName: Downgrade pip lol - script: '"C:/Python%PYTHON_VERSION%/Scripts/pip" install wheel cffi six asn1crypto ipaddress enum34' displayName: Install wheel and our Python dependencies - script: | |
