From 03125e3b928347400fde17d23a0fc552f62c4c97 Mon Sep 17 00:00:00 2001 From: Thorben Dahl Date: Wed, 10 May 2017 22:32:25 +0200 Subject: [PATCH 1/2] Add Travis CI test for Python 3.6 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 603f299..47f51c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ python: - "3.3" - "3.4" - "3.5" + - "3.6" before_install: pip install --quiet -r requirements.txt From bcd464d12e2128cd7bea7c2a2b0ee72384ef5a55 Mon Sep 17 00:00:00 2001 From: Thorben Dahl Date: Wed, 10 May 2017 22:37:38 +0200 Subject: [PATCH 2/2] Document Python 3.6 as a supported version --- doc/user/installation.rst | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/user/installation.rst b/doc/user/installation.rst index 87f1288..ceee88d 100644 --- a/doc/user/installation.rst +++ b/doc/user/installation.rst @@ -2,8 +2,8 @@ Installation ============ -PodGen can be used on any system (if not: file a bug report!), and supports -Python 2.7 and 3.3, 3.4 and 3.5. +PodGen can be used on any system (if not: file a bug report!), and officially supports +Python 2.7 and 3.3, 3.4, 3.5 and 3.6. Use `pip `_:: diff --git a/setup.py b/setup.py index c51dae5..1ce8740 100755 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Communications', 'Topic :: Internet', 'Topic :: Software Development :: Libraries :: Python Modules',