From aceb7baeb22a7b7c7361848381b099e66af224df Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 12 Jan 2021 00:55:48 +0100 Subject: [PATCH] .travis.yml: Allow failures for pypy3 + opt deps. 'cryptography' can't be installed because of errors thrown by gcc. --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fdb89634a..4f3147233 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,11 +40,12 @@ matrix: - python: "pypy3" env: WITH_OPT_DEPS=false dist: trusty - - python: "pypy3" - env: WITH_OPT_DEPS=true - dist: xenial -# allow_failures: - python: "nightly" env: WITH_OPT_DEPS=true dist: xenial + + allow_failures: + - python: "pypy3" + env: WITH_OPT_DEPS=true + dist: xenial