Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ifaddr==0.1.7
janus==1.0.0
jinja2==3.1.2
lru-dict==1.1.8
orjson==3.8.6
orjson==3.8.3
paho-mqtt==1.6.1
pillow==9.4.0
pip>=21.0,<23.1
Expand All @@ -49,6 +49,11 @@ voluptuous==0.13.1
yarl==1.8.1
zeroconf==0.47.3

# Constrain to v3.8.3 due to segmentation faults in v3.8.4 to at least v3.8.6
# on musl builds.
# See: https://github.com/home-assistant/core/issues/87283
orjson==3.8.3

# Constrain pycryptodome to avoid vulnerability
# see https://github.com/home-assistant/core/pull/16238
pycryptodome>=3.6.6
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies = [
"cryptography==39.0.1",
# pyOpenSSL 23.0.0 is required to work with cryptography 39+
"pyOpenSSL==23.0.0",
"orjson==3.8.6",
"orjson==3.8.3",
"pip>=21.0,<23.1",
"python-slugify==4.0.1",
"pyyaml==6.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lru-dict==1.1.8
PyJWT==2.5.0
cryptography==39.0.1
pyOpenSSL==23.0.0
orjson==3.8.6
orjson==3.8.3
pip>=21.0,<23.1
python-slugify==4.0.1
pyyaml==6.0
Expand Down
5 changes: 5 additions & 0 deletions script/gen_requirements_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@
os.path.dirname(__file__), "../homeassistant/package_constraints.txt"
)
CONSTRAINT_BASE = """
# Constrain to v3.8.3 due to segmentation faults in v3.8.4 to at least v3.8.6
# on musl builds.
# See: https://github.com/home-assistant/core/issues/87283
orjson==3.8.3

# Constrain pycryptodome to avoid vulnerability
# see https://github.com/home-assistant/core/pull/16238
pycryptodome>=3.6.6
Expand Down