From 10056ae257467279c07bc38a76344b701cfb4a38 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 21 Jan 2018 21:23:50 -0500 Subject: [PATCH] test: It's no longer possible to use `async def` via cython on py34 The asyncio coroutine runner cannot be made to use backports_abc. --- maint/test/cython/tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/maint/test/cython/tox.ini b/maint/test/cython/tox.ini index 725e17044..bbf8f1574 100644 --- a/maint/test/cython/tox.ini +++ b/maint/test/cython/tox.ini @@ -1,6 +1,6 @@ [tox] # This currently segfaults on pypy. -envlist = py27,py34,py35,py36 +envlist = py27,py35,py36 [testenv] deps = @@ -13,6 +13,5 @@ commands = python -m unittest cythonapp_test # defaults for the others. basepython = py27: python2.7 - py34: python3.4 py35: python3.5 py36: python3.6 -- 2.47.2