1
- dist : trusty
2
- sudo : false
1
+ dist : xenial
2
+ sudo : true
3
3
language : python
4
4
5
5
cache :
@@ -15,13 +15,12 @@ matrix:
15
15
- language : generic
16
16
os : osx
17
17
osx_image : xcode10.1
18
- env : TOXENV=py27
19
- - language : generic
20
- os : osx
21
- osx_image : xcode10.1
22
- env : TOXENV=py27 OPENSSL=1.1.0
18
+ env : TOXENV=py27 OPENSSL=1.1.1
23
19
- python : " 2.7" # these are just to make travis's UI a bit prettier
24
20
env : TOXENV=py27
21
+ dist : trusty # For OpenSSL 1.0.1 coverage
22
+ - python : " 2.7"
23
+ env : TOXENV=py27
25
24
- python : " 3.4"
26
25
env : TOXENV=py34
27
26
- python : " 3.5"
@@ -30,11 +29,9 @@ matrix:
30
29
env : TOXENV=py36
31
30
- python : " 3.7"
32
31
env : TOXENV=py37
33
- dist : xenial
34
- sudo : true
35
- - python : " pypy"
32
+ - python : " pypy2.7-5.10.0"
36
33
env : TOXENV=pypy
37
- - python : " pypy3"
34
+ - python : " pypy3.5-5.10.1 "
38
35
env : TOXENV=pypy3
39
36
40
37
# Also run the tests against cryptography master.
@@ -48,11 +45,9 @@ matrix:
48
45
env : TOXENV=py36-cryptographyMaster
49
46
- python : " 3.7"
50
47
env : TOXENV=py37-cryptographyMaster
51
- dist : xenial
52
- sudo : true
53
- - python : " pypy"
48
+ - python : " pypy2.7-5.10.0"
54
49
env : TOXENV=pypy-cryptographyMaster
55
- - python : " pypy3"
50
+ - python : " pypy3.5-5.10.1 "
56
51
env : TOXENV=pypy3-cryptographyMaster
57
52
58
53
# And current minimum cryptography version.
@@ -66,11 +61,9 @@ matrix:
66
61
env : TOXENV=py36-cryptographyMinimum
67
62
- python : " 3.7"
68
63
env : TOXENV=py37-cryptographyMinimum
69
- dist : xenial
70
- sudo : true
71
- - python : " pypy"
64
+ - python : " pypy2.7-5.10.0"
72
65
env : TOXENV=pypy-cryptographyMinimum
73
- - python : " pypy3"
66
+ - python : " pypy3.5-5.10.1 "
74
67
env : TOXENV=pypy3-cryptographyMinimum
75
68
76
69
@@ -110,7 +103,7 @@ install:
110
103
- |
111
104
if [[ "$(uname -s)" == 'Darwin' ]]; then
112
105
brew update
113
- if [[ "${OPENSSL}" == "1.1.0 " ]]; then
106
+ if [[ "${OPENSSL}" == "1.1.1 " ]]; then
114
107
115
108
else
116
109
brew upgrade openssl
@@ -128,7 +121,7 @@ script:
128
121
- |
129
122
if [[ "$(uname -s)" == 'Darwin' ]]; then
130
123
# set our flags to use homebrew openssl
131
- if [[ "${OPENSSL}" == "1.1.0 " ]]; then
124
+ if [[ "${OPENSSL}" == "1.1.1 " ]]; then
132
125
export LDFLAGS="-L/usr/local/opt/[email protected] /lib"
133
126
export CFLAGS="-I/usr/local/opt/[email protected] /include"
134
127
export PATH="/usr/local/opt/[email protected] /bin:$PATH"
0 commit comments