mirror of https://github.com/OpenKMIP/PyKMIP.git
Drop Python 3.3 support
This change drops Python 3.3 support for PyKMIP. Python 3.3 was released over 5 years ago and has reached end-of-life as of September 19, 2017 with the 3.3.7 release. Library dependencies have begun to drop Python 3.3 support as well.
This commit is contained in:
parent
d27d838db2
commit
c6ba51c2ac
|
@ -9,14 +9,6 @@ matrix:
|
||||||
os: linux
|
os: linux
|
||||||
dist: trusty
|
dist: trusty
|
||||||
env: TOXENV=py27
|
env: TOXENV=py27
|
||||||
- python: 3.3
|
|
||||||
os: linux
|
|
||||||
dist: precise
|
|
||||||
env: TOXENV=py33
|
|
||||||
- python: 3.3
|
|
||||||
os: linux
|
|
||||||
dist: trusty
|
|
||||||
env: TOXENV=py33
|
|
||||||
- python: 3.4
|
- python: 3.4
|
||||||
os: linux
|
os: linux
|
||||||
dist: precise
|
dist: precise
|
||||||
|
|
|
@ -8,7 +8,7 @@ You can install PyKMIP via ``pip``:
|
||||||
|
|
||||||
Supported platforms
|
Supported platforms
|
||||||
-------------------
|
-------------------
|
||||||
PyKMIP is tested on Python 2.7, 3.3, 3.4, 3.5, and 3.6 on the following
|
PyKMIP is tested on Python 2.7, 3.4, 3.5, and 3.6 on the following
|
||||||
operating systems:
|
operating systems:
|
||||||
|
|
||||||
* Ubuntu 12.04, 14.04, and 16.04
|
* Ubuntu 12.04, 14.04, and 16.04
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -57,7 +57,6 @@ setuptools.setup(
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 2",
|
"Programming Language :: Python :: 2",
|
||||||
"Programming Language :: Python :: 2.7",
|
"Programming Language :: Python :: 2.7",
|
||||||
"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",
|
"Programming Language :: Python :: 3.6",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
coverage
|
coverage
|
||||||
pytest<3.3 # TODO (peter-hamilton): Unpin this after Python 3.3 is dropped
|
pytest
|
||||||
flake8
|
flake8
|
||||||
testtools
|
testtools
|
||||||
fixtures
|
fixtures
|
||||||
|
|
Loading…
Reference in New Issue