summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-05-27 09:25:50 +0300
committerGitHub <noreply@github.com>2020-05-27 09:25:50 +0300
commit74ad82c422f53dcf8637970a6f399adb37c1a67a (patch)
tree60e46da717f82e01e231d1c96576bcbd1946ea47
parentb5b417b3d3d988178a844ce6f20457966509b038 (diff)
parent3f2155856e64dfe5a6f56f96c649e8081d0cd68d (diff)
downloadnumpy-74ad82c422f53dcf8637970a6f399adb37c1a67a.tar.gz
Merge pull request #16392 from charris/no-wheel-uploading
MAINT: Stop uploading wheels to Rackspace.
-rw-r--r--.travis.yml13
-rwxr-xr-xtools/travis-upload-wheel.sh13
2 files changed, 0 insertions, 26 deletions
diff --git a/.travis.yml b/.travis.yml
index aa01457fb..85f6127cd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,16 +27,6 @@ stages:
# Do the rest of the tests
- name: Comprehensive tests
-env:
- global:
- - WHEELHOUSE_UPLOADER_USERNAME=travis.numpy
- # The following is generated with the command:
- # travis encrypt -r numpy/numpy WHEELHOUSE_UPLOADER_SECRET=tH3AP1KeY
- - secure: "IEicLPrP2uW+jW51GRwkONQpdPqMVtQL5bdroqR/U8r9Tr\
- XrbCVRhp4AP8JYZT0ptoBpmZWWGjmKBndB68QlMiUjQPow\
- iFWt9Ka92CaqYdU7nqfWp9VImSndPmssjmCXJ1v1IjZPAM\
- ahp7Qnm0rWRmA0z9SomuRUQOJQ6s684vU="
-
jobs:
include:
# Do all python versions without environment variables set
@@ -134,6 +124,3 @@ before_install:
script:
- ./tools/travis-test.sh
-
-after_success:
- - ./tools/travis-upload-wheel.sh
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