Cannot find ENTITY_MATCH_NONE with denonavr component

I’m trying to get the denonavr component to simply start up during boot. I am using the latest HassOS 3.10 and Home Assistant 0.105.3 on a Pi. The following is what shows up in the log during startup:

Platform error: media_player
Traceback (most recent call last):
File “/usr/src/homeassistant/homeassistant/config.py”, line 739, in async_process_component_config
platform = p_integration.get_platform(domain)
File “/usr/src/homeassistant/homeassistant/loader.py”, line 275, in get_platform
f"{self.pkg_path}.{platform_name}"
File “/usr/local/lib/python3.7/importlib/init.py”, line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File “”, line 1006, in _gcd_import
File “”, line 983, in _find_and_load
File “”, line 967, in _find_and_load_unlocked
File “”, line 677, in _load_unlocked
File “”, line 728, in exec_module
File “”, line 219, in _call_with_frames_removed
File “/config/custom_components/denonavr/media_player.py”, line 26, in
from homeassistant.const import (
ImportError: cannot import name ‘ENTITY_MATCH_NONE’ from ‘homeassistant.const’ (/usr/src/homeassistant/homeassistant/const.py)

Looks like one of the files can’t find ENTITY_MATCH_NONE, but the constant is for sure defined in the latest sources for const.py and looks like it has been there for a while.

What am I doing wrong?