summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-05-26 16:37:55 -0600
committerCharles Harris <charlesr.harris@gmail.com>2020-05-26 16:37:55 -0600
commit3f2155856e64dfe5a6f56f96c649e8081d0cd68d (patch)
tree0fc61fb1e2c7f80b108d1935d786110e0fee2640 /tools
parent171ea2a856e7b40d0806501613f7361e09f0a2f8 (diff)
downloadnumpy-3f2155856e64dfe5a6f56f96c649e8081d0cd68d.tar.gz
MAINT: Stop uploading wheels to Rackspace.
PR #6768 introduced the uploading of wheels built during travisCI testing to a Rackspace account. We are moving away from Rackspace and already produce more complete sets of wheels for development testing on a weekly schedule. Consequently those wheels are not longer useful.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis-upload-wheel.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/travis-upload-wheel.sh b/tools/travis-upload-wheel.sh
deleted file mode 100755
index 06a8f3eba..000000000
--- a/tools/travis-upload-wheel.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-#
-set -ex
-
-export CLOUD_CONTAINER_NAME=travis-dev-wheels
-
-if [[ ( ${USE_WHEEL} == 1 ) \
- && ( "${TRAVIS_BRANCH}" == "master" ) \
- && ( "${TRAVIS_PULL_REQUEST}" == "false" ) ]]; then
- pip install wheelhouse_uploader
- python -m wheelhouse_uploader upload --local-folder \
- ${TRAVIS_BUILD_DIR}/dist/ ${CLOUD_CONTAINER_NAME}
-fi