From 600b986f99dfcc0d8a573927f87a805419d3adca Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 14 Oct 2018 18:57:30 +0300 Subject: [PATCH] .travis.yml: Use Python 3.7-dev instead of 3.7 I don't think Travis supports Python 3.7 yet because the builds for that version keep failing. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8382fce..7d18595 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: python python: - "3.5" - "3.6" - - "3.7" + - "3.7-dev" script: pip install -r requirements.txt # vim: ts=2 sw=2 et