From b550a2dc69497b80960fd3cb2acbc67c9b6ecfcf Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Mon, 7 Aug 2017 12:54:57 +0100 Subject: [PATCH 1/2] Test against Python 3.5 and 3.6 --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index af709cd..f132d06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ python: - "2.7" - "3.3" - "3.4" + - "3.5" + - "3.6" install: - pip install -r requirements.txt From 64fd5f1dd37789b6635b83a9790983f013adfd00 Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Mon, 7 Aug 2017 12:55:25 +0100 Subject: [PATCH 2/2] Add Python 2/3 trove classifiers to setup.py Fixes #130. --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index ef91e7f..7dabead 100755 --- a/setup.py +++ b/setup.py @@ -86,6 +86,13 @@ def get_package_data(package): 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Internet :: WWW/HTTP', ] )