From eacc6fe45033cc0959c190862302bf7aa27b06f3 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Sun, 1 Jul 2018 14:33:28 -0700 Subject: [PATCH] travis/appveyor: allow failures of the py3.7 build until they're actually supported by both systems. Neither has a py3.7 image available yet. --- .appveyor.yml | 5 +++++ .travis.yml | 2 ++ 2 files changed, 7 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index d164111..c583ab2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,6 +20,11 @@ environment: - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" +matrix: + allow_failures: + - PYTHON: "C:\\Python37-x64" + # appveyor does not yet install python-3.7 + install: - | %PYTHON%\python.exe -m pip install wheel tox diff --git a/.travis.yml b/.travis.yml index 4758ff0..32c699d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,4 +28,6 @@ after_success: matrix: allow_failures: - python: "3.3" + # travis doesn't support py3.7 yet + - python: "3.7" - python: "nightly"