Merge pull request #466 from OpenKMIP/feat/add-python37-support

Add support for Python 3.7
This commit is contained in:
Peter Hamilton 2018-11-16 08:34:22 -05:00 committed by GitHub
commit 257fcca477
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 1 deletions

View File

@ -146,6 +146,42 @@ matrix:
os: linux os: linux
dist: xenial dist: xenial
env: TOXENV=py36 RUN_INTEGRATION_TESTS=2 env: TOXENV=py36 RUN_INTEGRATION_TESTS=2
# - python: 3.7
# os: linux
# dist: precise
# env: TOXENV=py37 RUN_INTEGRATION_TESTS=0
# - python: 3.7
# os: linux
# dist: trusty
# env: TOXENV=py37 RUN_INTEGRATION_TESTS=0
- python: 3.7
os: linux
dist: xenial
env: TOXENV=py37 RUN_INTEGRATION_TESTS=0
# - python: 3.7
# os: linux
# dist: precise
# env: TOXENV=py37 RUN_INTEGRATION_TESTS=1
# - python: 3.7
# os: linux
# dist: trusty
# env: TOXENV=py37 RUN_INTEGRATION_TESTS=1
- python: 3.7
os: linux
dist: xenial
env: TOXENV=py36 RUN_INTEGRATION_TESTS=1
# - python: 3.7
# os: linux
# dist: precise
# env: TOXENV=py37 RUN_INTEGRATION_TESTS=2
# - python: 3.7
# os: linux
# dist: trusty
# env: TOXENV=py37 RUN_INTEGRATION_TESTS=2
- python: 3.7
os: linux
dist: xenial
env: TOXENV=py37 RUN_INTEGRATION_TESTS=2
- python: 2.7 - python: 2.7
os: linux os: linux
dist: precise dist: precise

View File

@ -60,5 +60,6 @@ setuptools.setup(
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
], ],
) )

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = pep8,py27,py34,py35,py36,bandit,docs envlist = pep8,py27,py34,py35,py36,py37,bandit,docs
[testenv] [testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH