@@ -22,20 +22,20 @@ matrix:
22
22
# - env: TARGET=x86_64-unknown-linux-gnu PYENV=2.7.13
23
23
- env : TARGET=x86_64-unknown-linux-musl PYENV=2.7.13
24
24
25
- # - env: TARGET=i686-unknown-linux-gnu PYENV=3.5.5
26
- # - env: TARGET=i686-unknown-linux-musl PYENV=3.5.5
27
- - env : TARGET=x86_64-unknown-linux-gnu PYENV=3.5.5
28
- # - env: TARGET=x86_64-unknown-linux-musl PYENV=3.5.5
25
+ # - env: TARGET=i686-unknown-linux-gnu PYENV=3.6.1
26
+ # - env: TARGET=i686-unknown-linux-musl PYENV=3.6.1
27
+ - env : TARGET=x86_64-unknown-linux-gnu PYENV=3.6.1
28
+ # - env: TARGET=x86_64-unknown-linux-musl PYENV=3.6.1
29
29
30
30
# OSX
31
31
- env : TARGET=i686-apple-darwin PYENV=2.7.13
32
32
os : osx
33
33
# - env: TARGET=x86_64-apple-darwin PYENV=2.7.13
34
34
# os: osx
35
35
36
- # - env: TARGET=i686-apple-darwin PYENV=3.5.5
36
+ # - env: TARGET=i686-apple-darwin PYENV=3.6.1
37
37
# os: osx
38
- - env : TARGET=x86_64-apple-darwin PYENV=3.5.5
38
+ - env : TARGET=x86_64-apple-darwin PYENV=3.6.1
39
39
os : osx
40
40
41
41
@@ -72,15 +72,13 @@ install:
72
72
73
73
script :
74
74
- bash ci/script.sh
75
- - bash ci/py_test .sh
75
+ - bash ci/pyscript .sh
76
76
77
77
after_script : set +e
78
78
79
79
before_deploy :
80
80
- sh ci/before_deploy.sh
81
81
82
-
83
-
84
82
deploy :
85
83
# After you create the Github repo and add it to Travis, run the
86
84
# travis_pypi_setup.py script to finish PyPI deployment setup
@@ -112,10 +110,16 @@ deploy:
112
110
tags : true
113
111
skip_cleanup : true
114
112
115
- cache : cargo
116
113
before_cache :
117
114
# Travis can't cache files that are not readable by "others"
118
- - chmod -R a+r $HOME/.cargo
115
+ - chmod -R a+r $HOME/.cache/pip
116
+ - chmod -R a+r $HOME/.cache/pyenv
117
+
118
+ cache :
119
+ cargo : true
120
+ directories :
121
+ - $HOME/.cache/pip
122
+ - $HOME/.cache/pyenv
119
123
120
124
branches :
121
125
only :
@@ -125,4 +129,7 @@ branches:
125
129
126
130
notifications :
127
131
email :
128
- on_success : never
132
+ recipients :
133
+
134
+ on_success : never
135
+ on_failure : always # default: always
0 commit comments