summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-10-22 22:16:33 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-02-05 11:51:47 +0100
commit2a020f358b4e8712d2388f12044ec3646be0a3c0 (patch)
tree9c5aaac0c1058417d77f2b727a17d5cc39c6f871
parentfa9b7875c561d7bc566ebaf143805cdf747b0420 (diff)
downloadrsa-git-2a020f358b4e8712d2388f12044ec3646be0a3c0.tar.gz
Add support for Python 3.6
-rw-r--r--.travis.yml1
-rw-r--r--tox.ini4
2 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 821469c..662cde5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,6 +6,7 @@ python:
- 2.7
- 3.4
- 3.5
+ - 3.6
- "pypy"
install:
diff --git a/tox.ini b/tox.ini
index a449130..faa4b21 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
# Environment changes have to be manually synced with '.travis.yml'.
-envlist = py27,py34,py35,pypy
+envlist = py27,py34,py35,py36,pypy
[pytest]
addopts = -v --cov rsa --cov-report term-missing
@@ -14,7 +14,7 @@ deps=pyasn1 >=0.1.3
pytest-cov
mock
-[testenv:py35]
+[testenv:py36]
commands=py.test --doctest-modules rsa tests
[pep8]