mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Bump up dependencies on pyserial and pyserial-asyncio (#44089)
This commit is contained in:
@ -2,6 +2,6 @@
|
||||
"domain": "acer_projector",
|
||||
"name": "Acer Projector",
|
||||
"documentation": "https://www.home-assistant.io/integrations/acer_projector",
|
||||
"requirements": ["pyserial==3.4"],
|
||||
"requirements": ["pyserial==3.5"],
|
||||
"codeowners": []
|
||||
}
|
||||
|
@ -2,6 +2,6 @@
|
||||
"domain": "serial",
|
||||
"name": "Serial",
|
||||
"documentation": "https://www.home-assistant.io/integrations/serial",
|
||||
"requirements": ["pyserial-asyncio==0.4"],
|
||||
"requirements": ["pyserial-asyncio==0.5"],
|
||||
"codeowners": ["@fabaff"]
|
||||
}
|
||||
|
@ -5,8 +5,8 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/zha",
|
||||
"requirements": [
|
||||
"bellows==0.21.0",
|
||||
"pyserial==3.4",
|
||||
"pyserial-asyncio==0.4",
|
||||
"pyserial==3.5",
|
||||
"pyserial-asyncio==0.5",
|
||||
"zha-quirks==0.0.48",
|
||||
"zigpy-cc==0.5.2",
|
||||
"zigpy-deconz==0.11.0",
|
||||
|
@ -1662,11 +1662,11 @@ pysensibo==1.0.3
|
||||
|
||||
# homeassistant.components.serial
|
||||
# homeassistant.components.zha
|
||||
pyserial-asyncio==0.4
|
||||
pyserial-asyncio==0.5
|
||||
|
||||
# homeassistant.components.acer_projector
|
||||
# homeassistant.components.zha
|
||||
pyserial==3.4
|
||||
pyserial==3.5
|
||||
|
||||
# homeassistant.components.sesame
|
||||
pysesame2==1.0.1
|
||||
|
@ -836,11 +836,11 @@ pyruckus==0.12
|
||||
|
||||
# homeassistant.components.serial
|
||||
# homeassistant.components.zha
|
||||
pyserial-asyncio==0.4
|
||||
pyserial-asyncio==0.5
|
||||
|
||||
# homeassistant.components.acer_projector
|
||||
# homeassistant.components.zha
|
||||
pyserial==3.4
|
||||
pyserial==3.5
|
||||
|
||||
# homeassistant.components.signal_messenger
|
||||
pysignalclirestapi==0.3.4
|
||||
|
@ -29,7 +29,7 @@ def serial_connect_fail(self):
|
||||
|
||||
def com_port():
|
||||
"""Mock of a serial port."""
|
||||
port = serial.tools.list_ports_common.ListPortInfo()
|
||||
port = serial.tools.list_ports_common.ListPortInfo("/dev/ttyUSB1234")
|
||||
port.serial_number = "1234"
|
||||
port.manufacturer = "Virtual serial port"
|
||||
port.device = "/dev/ttyUSB1234"
|
||||
|
@ -19,7 +19,7 @@ from tests.common import MockConfigEntry
|
||||
|
||||
def com_port():
|
||||
"""Mock of a serial port."""
|
||||
port = serial.tools.list_ports_common.ListPortInfo()
|
||||
port = serial.tools.list_ports_common.ListPortInfo("/dev/ttyUSB1234")
|
||||
port.serial_number = "1234"
|
||||
port.manufacturer = "Virtual serial port"
|
||||
port.device = "/dev/ttyUSB1234"
|
||||
|
Reference in New Issue
Block a user