diff --git a/homeassistant/components/ptvsd/__init__.py b/homeassistant/components/ptvsd/__init__.py index 55cef1405d92..258589084a0a 100644 --- a/homeassistant/components/ptvsd/__init__.py +++ b/homeassistant/components/ptvsd/__init__.py @@ -36,6 +36,10 @@ async def async_setup(hass: HomeAssistantType, config: ConfigType): """Set up ptvsd debugger.""" + _LOGGER.warning( + "ptvsd is deprecated and will be removed in Home Assistant Core 0.120." + "The debugpy integration can be used as a full replacement for ptvsd" + ) # This is a local import, since importing this at the top, will cause # ptvsd to hook into `sys.settrace`. So does `coverage` to generate