diff --git a/.travis.yml b/.travis.yml index 3345ff24f..d29102950 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python python: + - "3.5" - "3.4" - "3.3" - "2.7" diff --git a/docx/__init__.py b/docx/__init__.py index 1bf421391..2d79eba0d 100644 --- a/docx/__init__.py +++ b/docx/__init__.py @@ -2,7 +2,7 @@ from docx.api import Document # noqa -__version__ = '0.8.5' +__version__ = '0.8.6' # register custom Part classes with opc package reader diff --git a/tox.ini b/tox.ini index 014fd8dda..f13c3416c 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ python_classes = Test Describe python_functions = it_ they_ [tox] -envlist = py26, py27, py33, py34 +envlist = py26, py27, py33, py34, py35 [testenv] deps = @@ -38,3 +38,10 @@ deps = lxml pyparsing pytest + +[testenv:py35] +deps = + behave + lxml + pyparsing + pytest