diff options
author | Eric Brown <ericwb@users.noreply.github.com> | 2018-07-03 19:34:10 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-07-04 08:04:10 +0530 |
commit | d502a1f1e31c4cfb0294f9672390798778ba950c (patch) | |
tree | b9384b2a9ddff32e970708c1441be747077a7296 | |
parent | 8bf42606a35611c804c2204106cd84f436550ccb (diff) | |
download | cryptography-d502a1f1e31c4cfb0294f9672390798778ba950c.tar.gz cryptography-d502a1f1e31c4cfb0294f9672390798778ba950c.tar.bz2 cryptography-d502a1f1e31c4cfb0294f9672390798778ba950c.zip |
Add testing support of Python 3.7 (#4305)
So pyca/cryptography's Python classifier already claims support
of Python 3.7, but there is no testing matrix for it. This patch
adds the recently released Python 3.7 to the matrix of testing.
It requires sudo:true and xenial to pass.
Fixes Issue #4301
Signed-off-by: Eric Brown <browne@vmware.com>
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 0929be72..40a85a13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,10 @@ matrix: env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 + - python: 3.7 + env: TOXENV=py37 + dist: xenial + sudo: true - python: pypy-5.3 env: TOXENV=pypy - python: pypy2.7-5.10.0 |