From 4360a9dde495151525c570be1ea1d0665553a8b7 Mon Sep 17 00:00:00 2001 From: Xavier Fernandez Date: Thu, 13 Jun 2019 13:59:29 +0200 Subject: [PATCH] Fix twisted test on Python3.4 cf https://github.com/twisted/twisted/commit/fc3be690fda845dc369366f1d6a7e7ff67db81dd and https://github.com/twisted/twisted/commit/8a473397d5cdecff38b95a94fc7fc75dd06217dc broke Python3.4 between 19.2.0 and 19.2.1 Signed-off-by: Xavier Fernandez --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 45259ef6..d88a7e8f 100644 --- a/tox.ini +++ b/tox.ini @@ -29,7 +29,8 @@ deps = [testenv] deps = {[base]deps} - {py27,py34,py35,py36,pypy,pypy3}: twisted + {py27,py35,py36,pypy,pypy3}: twisted + {py34}: twisted==19.2.0 commands = coverage run --parallel -m pytest {posargs} ; Ensure test suite passes if no optional dependencies are present.