c5ca3297f3
This change removes PyKMIP support for Python2.6. The last release of Python2.6 occurred in October 2013, over 3 years ago. It also does not support security features needed to use PyKMIP according to best practices. This change drops tox and TravisCI settings for Python2.6 and updates setup to no longer categorize the library as Python2.6 compliant. The README has been updated accordingly. Closes #116
26 lines
502 B
YAML
26 lines
502 B
YAML
language: python
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
env: TOXENV=py27
|
|
- python: 3.3
|
|
env: TOXENV=py33
|
|
- python: 3.4
|
|
env: TOXENV=py34
|
|
- python: 3.5
|
|
env: TOXENV=py35
|
|
- python: 3.6
|
|
env: TOXENV=py36
|
|
- python: 2.7
|
|
env: TOXENV=pep8
|
|
- python: 2.7
|
|
env: TOXENV=bandit
|
|
install:
|
|
- pip install tox
|
|
- pip install bandit
|
|
- pip install codecov
|
|
script:
|
|
- tox
|
|
after_success:
|
|
- codecov
|