From 00ed3909ddfa28874b53b8a60849951052f0d23c Mon Sep 17 00:00:00 2001 From: Chris Ballance Date: Tue, 28 Feb 2017 10:49:19 +0000 Subject: [PATCH] monkey-patch Python 3.5.3 asyncio.base_events._ipaddr_info this fixes #506 for py3.5.3 --- artiq/monkey_patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/monkey_patches.py b/artiq/monkey_patches.py index eeabe5f0f..4b53751dc 100644 --- a/artiq/monkey_patches.py +++ b/artiq/monkey_patches.py @@ -4,7 +4,7 @@ import sys __all__ = [] -if sys.version_info[:3] == (3, 5, 2): +if sys.version_info[:2] == (3, 5) and sys.version_info[2] in (2, 3): import asyncio # See https://github.com/m-labs/artiq/issues/506