From: Ben Darnell Date: Mon, 22 Jan 2018 02:23:50 +0000 (-0500) Subject: test: It's no longer possible to use `async def` via cython on py34 X-Git-Tag: v5.0.0~13^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10056ae257467279c07bc38a76344b701cfb4a38;p=thirdparty%2Ftornado.git 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. --- 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