From 48cb4663daedc3b58fffc12c05c73cef2a17a44d Mon Sep 17 00:00:00 2001 From: mattip Date: Thu, 8 Aug 2024 11:25:52 +0300 Subject: [PATCH] do not upload tarballs --- tools/upload_to_anaconda_staging.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tools/upload_to_anaconda_staging.sh b/tools/upload_to_anaconda_staging.sh index 6b22aba..cce7147 100644 --- a/tools/upload_to_anaconda_staging.sh +++ b/tools/upload_to_anaconda_staging.sh @@ -29,13 +29,5 @@ upload_wheels() { anaconda -t $ANACONDA_SCIENTIFIC_PYTHON_UPLOAD upload \ --no-progress --force -u scientific-python-nightly-wheels \ dist/scipy_openblas*.whl - - tarballs=$(ls -d builds/openblas*.zip libs/openblas*.tar.gz 2>/dev/null) - anaconda -t $ANACONDA_SCIENTIFIC_PYTHON_UPLOAD upload \ - --no-progress --force -u scientific-python-nightly-wheels \ - -t file -p "openblas-libs" -v "$VERSION" \ - -d "OpenBLAS for multibuild wheels" \ - -s "OpenBLAS for multibuild wheels" \ - ${tarballs} fi }