File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7070 - name : Upload wheels to Anaconda Cloud as nightlies
7171 run : |
7272 anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} upload \
73- --user scipy-wheels -nightly \
73+ --user scientific-python -nightly-wheels \
7474 --skip-existing \
7575 dist/matplotlib-*.whl
7676
@@ -82,13 +82,13 @@ jobs:
8282 # N.B.: `anaconda show` places the newest packages at the bottom of
8383 # the output of the 'Versions' section and package versions are
8484 # preceded with a ' + '.
85- anaconda show scipy-wheels -nightly/matplotlib &> >(grep '+') | \
85+ anaconda show scientific-python -nightly-wheels /matplotlib &> >(grep '+') | \
8686 sed 's/.* + //' | \
8787 head --lines "-${N_LATEST_UPLOADS}" > remove-package-versions.txt
8888
8989 while LANG=C IFS= read -r package_version ; do
90- echo "Removing scipy-wheels -nightly/matplotlib/${package_version}"
90+ echo "Removing scientific-python -nightly-wheels /matplotlib/${package_version}"
9191 anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} remove \
9292 --force \
93- "scipy-wheels -nightly/matplotlib/${package_version}"
93+ "scientific-python -nightly-wheels /matplotlib/${package_version}"
9494 done <remove-package-versions.txt
You can’t perform that action at this time.
0 commit comments