Bump pyoctoprintapi version to 0.1.14 (#148651)

This commit is contained in:
Alex Leversen 2025-07-13 03:04:01 -04:00 committed by GitHub
parent 87fd45d4ab
commit 4122af1d33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@
"documentation": "https://www.home-assistant.io/integrations/octoprint",
"iot_class": "local_polling",
"loggers": ["pyoctoprintapi"],
"requirements": ["pyoctoprintapi==0.1.12"],
"requirements": ["pyoctoprintapi==0.1.14"],
"ssdp": [
{
"manufacturer": "The OctoPrint Project",

2
requirements_all.txt generated
View File

@ -2196,7 +2196,7 @@ pynzbgetapi==0.2.0
pyobihai==1.4.2
# homeassistant.components.octoprint
pyoctoprintapi==0.1.12
pyoctoprintapi==0.1.14
# homeassistant.components.ombi
pyombi==0.1.10

View File

@ -1829,7 +1829,7 @@ pynzbgetapi==0.2.0
pyobihai==1.4.2
# homeassistant.components.octoprint
pyoctoprintapi==0.1.12
pyoctoprintapi==0.1.14
# homeassistant.components.openuv
pyopenuv==2023.02.0

View File

@ -21,7 +21,7 @@ from homeassistant.helpers.typing import UNDEFINED, UndefinedType
from tests.common import MockConfigEntry
DEFAULT_JOB = {
"job": {},
"job": {"file": {}},
"progress": {"completion": 50},
}

View File

@ -24,7 +24,7 @@ async def test_sensors(
"temperature": {"tool1": {"actual": 18.83136, "target": 37.83136}},
}
job = {
"job": {},
"job": {"file": {}},
"progress": {"completion": 50, "printTime": 600, "printTimeLeft": 6000},
"state": "Printing",
}
@ -126,7 +126,7 @@ async def test_sensors_paused(
"temperature": {"tool1": {"actual": 18.83136, "target": None}},
}
job = {
"job": {},
"job": {"file": {}},
"progress": {"completion": 50, "printTime": 600, "printTimeLeft": 6000},
"state": "Paused",
}
@ -155,7 +155,7 @@ async def test_sensors_printer_disconnected(
) -> None:
"""Test the underlying sensors."""
job = {
"job": {},
"job": {"file": {}},
"progress": {"completion": 50, "printTime": 600, "printTimeLeft": 6000},
"state": "Paused",
}