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