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

Commit 9bfb24a

Browse files
committed
MAINT: Do not rename wheels.
The timestamp is now part of the development version name in order to comply with the stricter consistency checks of pip 20.3., so renaming should no longer be needed.
1 parent 1e07ad6 commit 9bfb24a

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ after_success:
7777
- if [ "$TRAVIS_BRANCH" == "master" ] ; then
7878
ANACONDA_ORG="scipy-wheels-nightly";
7979
TOKEN=${NUMPY_NIGHTLY_UPLOAD_TOKEN};
80-
source extra_functions.sh;
81-
for f in wheelhouse/*.whl; do rename_wheel $f; done;
8280
else
8381
ANACONDA_ORG="multibuild-wheels-staging";
8482
TOKEN=${NUMPY_STAGING_UPLOAD_TOKEN};

azure/posix.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,7 @@ jobs:
117117
118118
- bash: |
119119
set -e
120-
if [ $ANACONDA_ORG == "scipy-wheels-nightly" ]; then
121-
source extra_functions.sh
122-
for f in wheelhouse/*.whl; do rename_wheel $f; done
123-
fi
124-
125120
echo uploading wheelhouse/*.whl
126-
127121
anaconda -t $TOKEN upload -u $ANACONDA_ORG wheelhouse/*.whl
128122
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
129123
displayName: Upload to anaconda.org (only if secret token is retrieved)

azure/windows.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,7 @@ jobs:
158158
159159
- bash: |
160160
set -e
161-
if [ "$ANACONDA_ORG" == "scipy-wheels-nightly" ]; then
162-
source extra_functions.sh
163-
for f in numpy/dist/numpy-*.whl; do rename_wheel $f; done
164-
fi
165-
166161
echo uploading numpy/dist/numpy-*.whl
167-
168162
anaconda -t $TOKEN upload -u $ANACONDA_ORG numpy/dist/numpy-*.whl
169163
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
170164
displayName: Upload to anaconda.org (only if secret token is retrieved)

0 commit comments

Comments
 (0)