diff --git a/ddtrace/settings/asm.py b/ddtrace/settings/asm.py index 57a6813ab35..4024c13f982 100644 --- a/ddtrace/settings/asm.py +++ b/ddtrace/settings/asm.py @@ -218,7 +218,7 @@ class ASMConfig(Env): _bypass_instrumentation_for_waf = False # IAST supported on python 3.6 to 3.13 and never on windows - _iast_supported: bool = ((3, 8, 0) <= sys.version_info < (3, 14, 0)) and not ( + _iast_supported: bool = ((3, 6, 0) <= sys.version_info < (3, 14, 0)) and not ( sys.platform.startswith("win") or sys.platform.startswith("cygwin") )