From 689714965b7e28354a7f0d5989c6bac6934e5913 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 15 Jan 2019 20:29:20 +0800 Subject: [PATCH] monkey_patches: disable for Python >= 3.6.7 3.6 >=7 are fixed 3.7.0 is incompatible with the monkey patches and they do more harm than good 3.7 >=1 are fixed --- 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 930d8b118..f6c31ad48 100644 --- a/artiq/monkey_patches.py +++ b/artiq/monkey_patches.py @@ -5,7 +5,7 @@ import socket __all__ = [] -if sys.version_info[:3] >= (3, 5, 2): +if sys.version_info[:3] >= (3, 5, 2) and sys.version_info[:3] <= (3, 6, 6): import asyncio # See https://github.com/m-labs/artiq/issues/506