File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 71
71
- name : Upload wheels to Anaconda Cloud as nightlies
72
72
run : |
73
73
anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} upload \
74
- --user scipy-wheels -nightly \
74
+ --user scientific-python -nightly-wheels \
75
75
--skip-existing \
76
76
dist/matplotlib-*.whl
77
77
@@ -83,13 +83,13 @@ jobs:
83
83
# N.B.: `anaconda show` places the newest packages at the bottom of
84
84
# the output of the 'Versions' section and package versions are
85
85
# preceded with a ' + '.
86
- anaconda show scipy-wheels -nightly/matplotlib &> >(grep '+') | \
86
+ anaconda show scientific-python -nightly-wheels /matplotlib &> >(grep '+') | \
87
87
sed 's/.* + //' | \
88
88
head --lines "-${N_LATEST_UPLOADS}" > remove-package-versions.txt
89
89
90
90
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}"
92
92
anaconda --token ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} remove \
93
93
--force \
94
- "scipy-wheels -nightly/matplotlib/${package_version}"
94
+ "scientific-python -nightly-wheels /matplotlib/${package_version}"
95
95
done <remove-package-versions.txt
You can’t perform that action at this time.
0 commit comments