summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKane Blueriver <kxxoling@gmail.com>2018-07-30 00:34:43 +0800
committerGitHub <noreply@github.com>2018-07-30 00:34:43 +0800
commit46898fa095a2e24cd0551fe2ff6a3b80d5db3063 (patch)
treec9f9bfdde40f7ea3a517446d1c8e963785e5a679
parent8e5cede828bda53d375efaa1d1bf9883a3e5f51b (diff)
parent3fa4e9e28fa707e7ae923c656e10505a479c9b0c (diff)
downloadpython-prettytable-ptable-46898fa095a2e24cd0551fe2ff6a3b80d5db3063.tar.gz
Merge pull request #26 from hugovk/add-3.7
Add Python 3.7 support and testing
-rw-r--r--.travis.yml15
-rw-r--r--setup.py1
2 files changed, 11 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 23b3905..c704523 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,14 @@
language: python
-python:
- - "2.7"
- - "3.4"
- - "3.5"
- - "3.6"
+
+matrix:
+ include:
+ - python: "2.7"
+ - python: "3.4"
+ - python: "3.5"
+ - python: "3.6"
+ - python: "3.7"
+ dist: xenial
+ sudo: required
install:
- "pip install -r req-dev.txt"
diff --git a/setup.py b/setup.py
index 761690e..1f49401 100644
--- a/setup.py
+++ b/setup.py
@@ -26,6 +26,7 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: BSD License',
'Topic :: Text Processing'