mirror of https://github.com/OpenKMIP/PyKMIP.git
Adding support for Python 3.6
This change adds PyKMIP support for Python 3.6, including updates for the tox and TravisCI configurations in addition to setup. Closes #243
This commit is contained in:
parent
068c7f5d99
commit
109950a399
|
@ -11,6 +11,8 @@ matrix:
|
|||
env: TOXENV=py34
|
||||
- python: 3.5
|
||||
env: TOXENV=py35
|
||||
- python: 3.6
|
||||
env: TOXENV=py36
|
||||
- python: 2.7
|
||||
env: TOXENV=pep8
|
||||
- python: 2.7
|
||||
|
|
|
@ -343,7 +343,7 @@ PyKMIP has been tested and runs on the following platform(s):
|
|||
|
||||
* Ubuntu: 12.04 LTS, 14.04 LTS, 16.04 LTS
|
||||
|
||||
PyKMIP is supported by Python 2.6, 2.7, 3.3 - 3.5.
|
||||
PyKMIP is supported by Python 2.6, 2.7, 3.3 - 3.6.
|
||||
|
||||
**NOTE:** Support for Python 2.6 will be deprecated in a future release of PyKMIP.
|
||||
|
||||
|
|
1
setup.py
1
setup.py
|
@ -61,5 +61,6 @@ setuptools.setup(
|
|||
"Programming Language :: Python :: 3.3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue