Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit a739dd8

Browse files
committed
MAINT: switch to anaconda.org weekly wheel uploads.
1 parent e0d7ef2 commit a739dd8

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

.travis.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,15 @@ script:
112112
- install_run $PLAT
113113

114114
after_success:
115-
# Upload wheels to Rackspace container
116-
# Upload may not work for Python 3.7:
117-
# https://github.com/ogrisel/wheelhouse-uploader/issues/27
118-
- pip install wheelhouse-uploader
119-
# disable uploads because we have lost free hosting
120-
# with Rackspace:
121-
#- travis_wait python -m wheelhouse_uploader upload --local-folder
122-
# ${TRAVIS_BUILD_DIR}/wheelhouse/
123-
# $UPLOAD_ARGS
124-
# $CONTAINER
115+
# trigger an upload to the shared ecosystem
116+
# infrastructure at: https://anaconda.org/scipy-wheels-nightly
117+
# for cron jobs only (restricted to master branch once
118+
# per week)
119+
# SCIPY_WHEELS_NIGHTLY is a secret token
120+
# used in Travis CI config, originally
121+
# generated at anaconda.org for scipy-wheels-nightly
122+
- if [ "$TRAVIS_EVENT_TYPE" == "cron" ]; then
123+
ANACONDA_ORG="scipy-wheels-nightly";
124+
pip install git+https://github.com/Anaconda-Server/anaconda-client
125+
anaconda -t ${SCIPY_WHEELS_NIGHTLY} upload --force -u ${ANACONDA_ORG} ${TRAVIS_BUILD_DIR}/wheelhouse/*.whl;
126+
fi

0 commit comments

Comments
 (0)