Upgrade psutil to 5.6.5 (#28717)
parent
4bcc669d19
commit
b4cec23add
|
@ -3,7 +3,7 @@
|
||||||
"name": "Systemmonitor",
|
"name": "Systemmonitor",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/systemmonitor",
|
"documentation": "https://www.home-assistant.io/integrations/systemmonitor",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"psutil==5.6.3"
|
"psutil==5.6.5"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": []
|
"codeowners": []
|
||||||
|
|
|
@ -7,12 +7,11 @@ import psutil
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
||||||
from homeassistant.const import CONF_RESOURCES, STATE_OFF, STATE_ON, CONF_TYPE
|
from homeassistant.const import CONF_RESOURCES, CONF_TYPE, STATE_OFF, STATE_ON
|
||||||
from homeassistant.helpers.entity import Entity
|
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
from homeassistant.helpers.entity import Entity
|
||||||
import homeassistant.util.dt as dt_util
|
import homeassistant.util.dt as dt_util
|
||||||
|
|
||||||
|
|
||||||
# mypy: allow-untyped-defs, no-check-untyped-defs
|
# mypy: allow-untyped-defs, no-check-untyped-defs
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
|
@ -1020,7 +1020,7 @@ prometheus_client==0.7.1
|
||||||
protobuf==3.6.1
|
protobuf==3.6.1
|
||||||
|
|
||||||
# homeassistant.components.systemmonitor
|
# homeassistant.components.systemmonitor
|
||||||
psutil==5.6.3
|
psutil==5.6.5
|
||||||
|
|
||||||
# homeassistant.components.ptvsd
|
# homeassistant.components.ptvsd
|
||||||
ptvsd==4.2.8
|
ptvsd==4.2.8
|
||||||
|
|
Loading…
Reference in New Issue