Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit f7e63e0

Browse files
committed
only rename wheels that go to scipy-wheels-nightly
1 parent e5e8f21 commit f7e63e0

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ after_success:
108108
- if [ "$TRAVIS_BRANCH" == "master" ]; then
109109
ANACONDA_ORG="scipy-wheels-nightly";
110110
TOKEN=${NUMPY_NIGHTLY_UPLOAD_TOKEN};
111+
source extra_functions.sh
112+
for f in wheelhouse/*.whl; do rename_wheel $f; done
111113
else
112114
ANACONDA_ORG="multibuild-wheels-staging";
113115
TOKEN=${NUMPY_STAGING_UPLOAD_TOKEN};

azure/posix.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,10 @@ jobs:
110110
111111
- bash: |
112112
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
115117
116118
echo uploading wheelhouse/*.whl
117119

azure/windows.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,10 @@ jobs:
138138
139139
- bash: |
140140
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
143145
144146
echo uploading numpy/dist/numpy-*.whl
145147

0 commit comments

Comments
 (0)