From 5f342d7f901c7948247e1655ad6bafc55f5759af Mon Sep 17 00:00:00 2001 From: Hugo Date: Tue, 27 Mar 2018 13:36:16 +0300 Subject: [PATCH] Add workaround for build failures on Python 3.7 (https://github.com/yaml/pyyaml/issues/126) --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f26cc12f..590edf99 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,9 @@ setenv = PYLAST_API_KEY={env:PYLAST_API_KEY:} PYLAST_API_SECRET={env:PYLAST_API_SECRET:} deps = - pyyaml + # Workaround for yaml/pyyaml#126 + py27,py36,py35,py34,pypy,pypy3,py36dev: pyyaml + py37dev: git+https://github.com/yaml/pyyaml@master#egg=pyyaml pytest mock ipdb