Skip to content

add CPython 3.7 CI testing and advertised support #88

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,26 @@ matrix:
env: TOXENV=py36-local-slow
- python: 3.6
env: TOXENV=py36-integ-slow
# CPython 3.7
# xenial + sudo are currently needed to get 3.7
# https://github.com/travis-ci/travis-ci/issues/9815
- python: 3.7
env: TOXENV=py37-local-slow
dist: xenial
sudo: true
- python: 3.7
env: TOXENV=py37-integ-slow
dist: xenial
sudo: true
# Upstream tests
- python: 2.7
env: TOXENV=test-upstream-requirements-py27
# xenial + sudo are currently needed to get 3.7
# https://github.com/travis-ci/travis-ci/issues/9815
- python: 3.7
env: TOXENV=test-upstream-requirements-py37
dist: xenial
sudo: true
# MyPy
# Disabled pending completion of integration
# https://github.com/aws/aws-dynamodb-encryption-python/issues/66
Expand Down Expand Up @@ -52,5 +69,9 @@ matrix:
# env: TOXENV=flake8-tests
# - python: 3.6
# env: TOXENV=pylint-tests
install: pip install tox
install:
# Clean up because Travis doesn't
# https://github.com/travis-ci/travis-ci/issues/7940
- if [[ $TRAVIS_SUDO ]]; then sudo rm -f /etc/boto.cfg; fi
- pip install tox
script: travis_wait 60 tox -- -vv
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def get_requirements():
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security',
'Topic :: Security :: Cryptography'
Expand Down