Skip to content

Commit 4bc6bc7

Browse files
committed
drop py2.6 support, make it clear that py3.6 is supported
1 parent 946a11b commit 4bc6bc7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
* License: MIT
55
* Dependencies: hkdf
6-
* Compatible With: Python 2.6, 2.7, 3.3, 3.4, 3.5, PyPy2
6+
* Compatible With: Python 2.7, 3.3, 3.4, 3.5, 3.6, PyPy2
77
* [![Build Status](https://travis-ci.org/warner/python-spake2.png?branch=master)](https://travis-ci.org/warner/python-spake2) [![Coverage Status](https://coveralls.io/repos/warner/python-spake2/badge.svg)](https://coveralls.io/r/warner/python-spake2)
88

99
This library implements the SPAKE2 password-authenticated key exchange

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ def abbrev(t):
7272
"Intended Audience :: Developers",
7373
"License :: OSI Approved :: MIT License",
7474
"Programming Language :: Python",
75-
"Programming Language :: Python :: 2.6",
7675
"Programming Language :: Python :: 2.7",
7776
"Programming Language :: Python :: 3.3",
7877
"Programming Language :: Python :: 3.4",
7978
"Programming Language :: Python :: 3.5",
79+
"Programming Language :: Python :: 3.6",
8080
"Topic :: Security :: Cryptography",
8181
],
8282
install_requires=["hkdf"],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py26, py27, py33, py34, py35, py36
7+
envlist = py27, py33, py34, py35, py36
88

99
[testenv]
1010
usedevelop = True

0 commit comments

Comments
 (0)