From aea8428a764fbb22dd86407f4c559a3cff9981d4 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Thu, 4 Jul 2019 13:06:20 -0400 Subject: [PATCH] Officially support Python 3.7 (#1284) --- setup.py | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 49f70a7a8..7780a32f8 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,7 @@ def read(fname): 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], test_suite='tests', project_urls={ diff --git a/tox.ini b/tox.ini index ab3544cbd..4d7b96f89 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py26,py27,py34,py35,docs +envlist = lint,py26,py27,py34,py35,py36,py37,docs [testenv] extras = tests,reco