From 4f1e334bf5735a120f403cdeab1b806fdfd31ef7 Mon Sep 17 00:00:00 2001 From: Joseph Capriotti Date: Fri, 27 Oct 2023 17:35:38 -0600 Subject: [PATCH] install twine for uploading --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 13def7528..b262c1bbf 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -143,6 +143,7 @@ stages: set -o errexit python3 -m pip install --upgrade pip pip3 install cibuildwheel==2.16.2 + pip3 install twine displayName: Install dependencies - bash: cibuildwheel --output-dir wheelhouse . displayName: Build wheels @@ -168,6 +169,7 @@ stages: set -o errexit python3 -m pip install --upgrade pip python3 -m pip install cibuildwheel==2.16.2 + python3 -m pip install twine displayName: Install dependencies - bash: cibuildwheel --output-dir wheelhouse . displayName: Build wheels @@ -193,6 +195,7 @@ stages: set -o errexit python -m pip install --upgrade pip pip install cibuildwheel==2.16.2 + pip install twine displayName: Install dependencies - bash: cibuildwheel --output-dir wheelhouse . displayName: Build wheels