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 7171 - name : Upload wheels to Anaconda Cloud as nightlies
7272 run : |
7373 anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} upload \
74- --user scipy-wheels -nightly \
74+ --user scientific-python -nightly-wheels \
7575 --skip-existing \
7676 dist/matplotlib-*.whl
7777
@@ -83,13 +83,13 @@ jobs:
8383 # N.B.: `anaconda show` places the newest packages at the bottom of
8484 # the output of the 'Versions' section and package versions are
8585 # preceded with a ' + '.
86- anaconda show scipy-wheels -nightly/matplotlib &> >(grep '+') | \
86+ anaconda show scientific-python -nightly-wheels /matplotlib &> >(grep '+') | \
8787 sed 's/.* + //' | \
8888 head --lines "-${N_LATEST_UPLOADS}" > remove-package-versions.txt
8989
9090 while LANG=C IFS= read -r package_version ; do
91- echo "Removing scipy-wheels -nightly/matplotlib/${package_version}"
91+ echo "Removing scientific-python -nightly-wheels /matplotlib/${package_version}"
9292 anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} remove \
9393 --force \
94- "scipy-wheels -nightly/matplotlib/${package_version}"
94+ "scientific-python -nightly-wheels /matplotlib/${package_version}"
9595 done <remove-package-versions.txt
You can’t perform that action at this time.
0 commit comments