mirror of https://github.com/OpenKMIP/PyKMIP.git
Merge pull request #247 from OpenKMIP/maint/add-support-for-python3.6
Adding support for Python 3.6
This commit is contained in:
commit
5f8efe464e
|
@ -11,6 +11,8 @@ matrix:
|
||||||
env: TOXENV=py34
|
env: TOXENV=py34
|
||||||
- python: 3.5
|
- python: 3.5
|
||||||
env: TOXENV=py35
|
env: TOXENV=py35
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py36
|
||||||
- python: 2.7
|
- python: 2.7
|
||||||
env: TOXENV=pep8
|
env: TOXENV=pep8
|
||||||
- python: 2.7
|
- 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
|
* 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.
|
**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.3",
|
||||||
"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",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue