diff --git a/homeassistant/components/acer_projector/manifest.json b/homeassistant/components/acer_projector/manifest.json index 861e483adb8..096d2c6e24d 100644 --- a/homeassistant/components/acer_projector/manifest.json +++ b/homeassistant/components/acer_projector/manifest.json @@ -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": [] } diff --git a/homeassistant/components/serial/manifest.json b/homeassistant/components/serial/manifest.json index d8305d10553..ce85d07d086 100644 --- a/homeassistant/components/serial/manifest.json +++ b/homeassistant/components/serial/manifest.json @@ -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"] } diff --git a/homeassistant/components/zha/manifest.json b/homeassistant/components/zha/manifest.json index f1821c9e480..7a36348b72c 100644 --- a/homeassistant/components/zha/manifest.json +++ b/homeassistant/components/zha/manifest.json @@ -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", diff --git a/requirements_all.txt b/requirements_all.txt index c8b5ded4cca..65bd29256ab 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -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 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index d5a21ee3a1f..8497227b164 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -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 diff --git a/tests/components/rfxtrx/test_config_flow.py b/tests/components/rfxtrx/test_config_flow.py index 6ba045d60a6..04545a1a422 100644 --- a/tests/components/rfxtrx/test_config_flow.py +++ b/tests/components/rfxtrx/test_config_flow.py @@ -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" diff --git a/tests/components/zha/test_config_flow.py b/tests/components/zha/test_config_flow.py index 709b9a0ff22..6fcc369182d 100644 --- a/tests/components/zha/test_config_flow.py +++ b/tests/components/zha/test_config_flow.py @@ -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"