From 25a2553a0215448bbda8da6dafa075d4367a293a Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Mon, 22 May 2023 10:29:40 -0700 Subject: [PATCH] Upload nightlies to new location --- .github/workflows/nightlies.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightlies.yml b/.github/workflows/nightlies.yml index f748e6433d42..b96c2fab752c 100644 --- a/.github/workflows/nightlies.yml +++ b/.github/workflows/nightlies.yml @@ -70,7 +70,7 @@ jobs: - name: Upload wheels to Anaconda Cloud as nightlies run: | anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} upload \ - --user scipy-wheels-nightly \ + --user scientific-python-nightly-wheels \ --skip-existing \ dist/matplotlib-*.whl @@ -82,13 +82,13 @@ jobs: # N.B.: `anaconda show` places the newest packages at the bottom of # the output of the 'Versions' section and package versions are # preceded with a ' + '. - anaconda show scipy-wheels-nightly/matplotlib &> >(grep '+') | \ + anaconda show scientific-python-nightly-wheels/matplotlib &> >(grep '+') | \ sed 's/.* + //' | \ head --lines "-${N_LATEST_UPLOADS}" > remove-package-versions.txt while LANG=C IFS= read -r package_version ; do - echo "Removing scipy-wheels-nightly/matplotlib/${package_version}" + echo "Removing scientific-python-nightly-wheels/matplotlib/${package_version}" anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} remove \ --force \ - "scipy-wheels-nightly/matplotlib/${package_version}" + "scientific-python-nightly-wheels/matplotlib/${package_version}" done