This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,8 @@ after_success:
108
108
- if [ "$TRAVIS_BRANCH" == "master" ]; then
109
109
ANACONDA_ORG="scipy-wheels-nightly";
110
110
TOKEN=${NUMPY_NIGHTLY_UPLOAD_TOKEN};
111
+ source extra_functions.sh
112
+ for f in wheelhouse/*.whl; do rename_wheel $f; done
111
113
else
112
114
ANACONDA_ORG="multibuild-wheels-staging";
113
115
TOKEN=${NUMPY_STAGING_UPLOAD_TOKEN};
Original file line number Diff line number Diff line change @@ -110,8 +110,10 @@ jobs:
110
110
111
111
- bash : |
112
112
set -e
113
- source extra_functions.sh
114
- for f in wheelhouse/*.whl; do rename_wheel $f; done
113
+ if [ $ANACONDA_ORG == "scipy-wheels-nightly" ]; then
114
+ source extra_functions.sh
115
+ for f in wheelhouse/*.whl; do rename_wheel $f; done
116
+ fi
115
117
116
118
echo uploading wheelhouse/*.whl
117
119
Original file line number Diff line number Diff line change @@ -138,8 +138,10 @@ jobs:
138
138
139
139
- bash : |
140
140
set -e
141
- source extra_functions.sh
142
- for f in numpy/dist/numpy-*.whl; do rename_wheel $f; done
141
+ if [ $ANACONDA_ORG == "scipy-wheels-nightly" ]; then
142
+ source extra_functions.sh
143
+ for f in wheelhouse/*.whl; do rename_wheel $f; done
144
+ fi
143
145
144
146
echo uploading numpy/dist/numpy-*.whl
145
147
You can’t perform that action at this time.
0 commit comments