mirror of https://github.com/m-labs/artiq.git
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
This commit is contained in:
parent
05f6dafb2c
commit
689714965b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue