File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,26 @@ matrix:
22
22
env : TOXENV=py36-local-slow
23
23
- python : 3.6
24
24
env : TOXENV=py36-integ-slow
25
+ # CPython 3.7
26
+ # xenial + sudo are currently needed to get 3.7
27
+ # https://github.com/travis-ci/travis-ci/issues/9815
28
+ - python : 3.7
29
+ env : TOXENV=py37-local-slow
30
+ dist : xenial
31
+ sudo : true
32
+ - python : 3.7
33
+ env : TOXENV=py37-integ-slow
34
+ dist : xenial
35
+ sudo : true
25
36
# Upstream tests
26
37
- python : 2.7
27
38
env : TOXENV=test-upstream-requirements-py27
39
+ # xenial + sudo are currently needed to get 3.7
40
+ # https://github.com/travis-ci/travis-ci/issues/9815
41
+ - python : 3.7
42
+ env : TOXENV=test-upstream-requirements-py37
43
+ dist : xenial
44
+ sudo : true
28
45
# MyPy
29
46
# Disabled pending completion of integration
30
47
# https://github.com/aws/aws-dynamodb-encryption-python/issues/66
@@ -52,5 +69,9 @@ matrix:
52
69
# env: TOXENV=flake8-tests
53
70
# - python: 3.6
54
71
# env: TOXENV=pylint-tests
55
- install : pip install tox
72
+ install :
73
+ # Clean up because Travis doesn't
74
+ # https://github.com/travis-ci/travis-ci/issues/7940
75
+ - if [[ $TRAVIS_SUDO ]]; then sudo rm -f /etc/boto.cfg; fi
76
+ - pip install tox
56
77
script : travis_wait 60 tox -- -vv
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def get_requirements():
58
58
'Programming Language :: Python :: 3.4' ,
59
59
'Programming Language :: Python :: 3.5' ,
60
60
'Programming Language :: Python :: 3.6' ,
61
+ 'Programming Language :: Python :: 3.7' ,
61
62
'Programming Language :: Python :: Implementation :: CPython' ,
62
63
'Topic :: Security' ,
63
64
'Topic :: Security :: Cryptography'
You can’t perform that action at this time.
0 commit comments