From 3651dae12baf7629b216a08b09197f9f3ff1929e Mon Sep 17 00:00:00 2001
From: Peter Cock
Date: Sun, 8 Mar 2020 14:45:28 +0000
Subject: [PATCH] Include Python 3.7 and 3.8 on TravisCI
---
.travis.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 9c73537..c529d80 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,6 +15,10 @@ jobs:
python: "3.5"
- stage: test
python: "3.6"
+ - stage: test
+ python: "3.7"
+ - stage: test
+ python: "3.8"
before_install:
- "if grep '\t' *.py *.rst; then echo 'Tabs are bad, please use four spaces.'; false; fi"