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:
Peter Hamilton 2017-11-29 00:49:01 -05:00
parent d27d838db2
commit c6ba51c2ac
5 changed files with 3 additions and 12 deletions

View File

@ -9,14 +9,6 @@ matrix:
os: linux
dist: trusty
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
os: linux
dist: precise

View File

@ -8,7 +8,7 @@ You can install PyKMIP via ``pip``:
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:
* Ubuntu 12.04, 14.04, and 16.04

View File

@ -57,7 +57,6 @@ setuptools.setup(
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",

View File

@ -1,5 +1,5 @@
coverage
pytest<3.3 # TODO (peter-hamilton): Unpin this after Python 3.3 is dropped
pytest
flake8
testtools
fixtures

View File

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