From 6183964be7bf78eb7606da7cbe518ea097b9fa78 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 7 May 2017 22:21:14 +0300 Subject: [PATCH] Add support for Python 3.5 and 3.6 --- setup.py | 2 ++ tox.ini | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6cacd70..dc076b2 100755 --- a/setup.py +++ b/setup.py @@ -35,6 +35,8 @@ setup(name='m_librarian', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], packages=['m_librarian'], package_data={'m_librarian': [ diff --git a/tox.ini b/tox.ini index 413b84a..dd7f4db 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.8 toxworkdir={homedir}/.tox/m_librarian -envlist = {py27,py34},{py27,py34}-flake8 +envlist = {py27,py34,py35,py36},{py27,py34}-flake8 # Base test environment settings [testenv] @@ -22,6 +22,12 @@ commands = {[general]commands} [testenv:py34] commands = {[general]commands} +[testenv:py35] +commands = {[general]commands} + +[testenv:py36] +commands = {[general]commands} + [testenv:py27-flake8] deps = flake8 -- 2.39.2