From d8eb00fbc824f97d0f4946e3f768c5e6c723499a Mon Sep 17 00:00:00 2001
From: Jordan Borean <jborean93@gmail.com>
Date: Fri, 14 Sep 2018 10:25:45 +1000
Subject: [PATCH] added explicit support for Python 3.7

---
 README.md | 2 +-
 setup.py  | 1 +
 tox.ini   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 254f7e1..7d8e21a 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ backlog for features that would be nice to have in this library.
 
 ## Requirements
 
-* Python 2.6, 2.7, 3.4-3.6
+* Python 2.6, 2.7, 3.4+
 * For Kerberos auth [python-gssapi](https://github.com/pythongssapi/python-gssapi)
 
 To use Kerberos authentication, further dependencies are required, to install
diff --git a/setup.py b/setup.py
index c35b29c..eec8526 100644
--- a/setup.py
+++ b/setup.py
@@ -48,5 +48,6 @@ setup(
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
     ],
 )
diff --git a/tox.ini b/tox.ini
index ddd4c19..effbe86 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py26,py27,py34,py35,py36
+envlist = py26,py27,py34,py35,py36,py37
 
 [testenv]
 deps= -rrequirements-test.txt
-- 
GitLab