]> git.phdru.name Git - m_librarian.git/commitdiff
Add support for Python 3.5 and 3.6
authorOleg Broytman <phd@phdru.name>
Sun, 7 May 2017 19:21:14 +0000 (22:21 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 7 May 2017 19:21:14 +0000 (22:21 +0300)
setup.py
tox.ini

index 6cacd70920036f5a1edd8551eca43caa7da478eb..dc076b26c5e10cb1952d0e60cc8bc50370fe1c7b 100755 (executable)
--- 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 413b84a903b0a5be695070059f33d8fde358bbd6..dd7f4db901bc2ca7ff6b03a03c5b3b0c4ef3e8eb 100644 (file)
--- 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