diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-01-16 16:08:23 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-01-16 16:08:23 -0700 |
commit | c2a925e8650405fe7a4de89efbc08fb6a32fd088 (patch) | |
tree | 5fed77210768f51f341bba324a3ed371c80f5067 | |
parent | d37d6f7298f62689433616cb93946a5a318e8537 (diff) | |
parent | 363c5021f7428f19a56cd081a5475e9d2b5e884d (diff) | |
download | numpy-c2a925e8650405fe7a4de89efbc08fb6a32fd088.tar.gz |
Merge pull request #7033 from ogrisel/py27-travis-wheels
[MRG] Enable py27 travis wheels upload for downstream projects
-rw-r--r-- | .travis.yml | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 1832e317c..3066cbbaa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,16 @@ cache: directories: - $HOME/.cache/pip +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=" + python: - 2.6 - 2.7 @@ -51,16 +61,10 @@ matrix: - python3-setuptools - python: 2.7 env: NPY_RELAXED_STRIDES_CHECKING=0 PYTHON_OO=1 + - python: 2.7 + env: USE_WHEEL=1 - python: 3.5 - env: - - USE_WHEEL=1 - - 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=" + env: USE_WHEEL=1 - python: 2.7 env: - PYTHONOPTIMIZE=2 |