diff --git a/homeassistant/bootstrap.py b/homeassistant/bootstrap.py index a6aadcc67a6..84581131edc 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -36,6 +36,7 @@ from .components import ( file_upload as file_upload_pre_import, # noqa: F401 history as history_pre_import, # noqa: F401 http, # not named pre_import since it has requirements + image_upload as image_upload_import, # noqa: F401 - not named pre_import since it has requirements lovelace as lovelace_pre_import, # noqa: F401 onboarding as onboarding_pre_import, # noqa: F401 recorder as recorder_import, # noqa: F401 - not named pre_import since it has requirements diff --git a/pyproject.toml b/pyproject.toml index 19b8f810899..765adc656d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,7 @@ dependencies = [ "PyJWT==2.8.0", # PyJWT has loose dependency. We want the latest one. "cryptography==42.0.5", + "Pillow==10.2.0", # pyOpenSSL 23.2.0 is required to work with cryptography 41+ "pyOpenSSL==24.0.0", "orjson==3.9.15", diff --git a/requirements.txt b/requirements.txt index b7a970bc967..2a9358c911f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,6 +23,7 @@ Jinja2==3.1.3 lru-dict==1.3.0 PyJWT==2.8.0 cryptography==42.0.5 +Pillow==10.2.0 pyOpenSSL==24.0.0 orjson==3.9.15 packaging>=23.1