Upgrade sqlalchemy to 1.2.6 (#13733)
This commit is contained in:
parent
fbb8a54c39
commit
ca3cc27e40
4 changed files with 6 additions and 7 deletions
|
@ -35,7 +35,7 @@ from . import migration, purge
|
||||||
from .const import DATA_INSTANCE
|
from .const import DATA_INSTANCE
|
||||||
from .util import session_scope
|
from .util import session_scope
|
||||||
|
|
||||||
REQUIREMENTS = ['sqlalchemy==1.2.5']
|
REQUIREMENTS = ['sqlalchemy==1.2.6']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -47,9 +47,8 @@ ATTR_KEEP_DAYS = 'keep_days'
|
||||||
ATTR_REPACK = 'repack'
|
ATTR_REPACK = 'repack'
|
||||||
|
|
||||||
SERVICE_PURGE_SCHEMA = vol.Schema({
|
SERVICE_PURGE_SCHEMA = vol.Schema({
|
||||||
vol.Optional(ATTR_KEEP_DAYS):
|
vol.Optional(ATTR_KEEP_DAYS): vol.All(vol.Coerce(int), vol.Range(min=0)),
|
||||||
vol.All(vol.Coerce(int), vol.Range(min=0)),
|
vol.Optional(ATTR_REPACK, default=False): cv.boolean,
|
||||||
vol.Optional(ATTR_REPACK, default=False): cv.boolean
|
|
||||||
})
|
})
|
||||||
|
|
||||||
DEFAULT_URL = 'sqlite:///{hass_config_path}'
|
DEFAULT_URL = 'sqlite:///{hass_config_path}'
|
||||||
|
|
|
@ -19,7 +19,7 @@ from homeassistant.helpers.entity import Entity
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
REQUIREMENTS = ['sqlalchemy==1.2.5']
|
REQUIREMENTS = ['sqlalchemy==1.2.6']
|
||||||
|
|
||||||
CONF_QUERIES = 'queries'
|
CONF_QUERIES = 'queries'
|
||||||
CONF_QUERY = 'query'
|
CONF_QUERY = 'query'
|
||||||
|
|
|
@ -1196,7 +1196,7 @@ spotcrime==1.0.3
|
||||||
# homeassistant.components.recorder
|
# homeassistant.components.recorder
|
||||||
# homeassistant.scripts.db_migrator
|
# homeassistant.scripts.db_migrator
|
||||||
# homeassistant.components.sensor.sql
|
# homeassistant.components.sensor.sql
|
||||||
sqlalchemy==1.2.5
|
sqlalchemy==1.2.6
|
||||||
|
|
||||||
# homeassistant.components.statsd
|
# homeassistant.components.statsd
|
||||||
statsd==3.2.1
|
statsd==3.2.1
|
||||||
|
|
|
@ -179,7 +179,7 @@ somecomfort==0.5.0
|
||||||
# homeassistant.components.recorder
|
# homeassistant.components.recorder
|
||||||
# homeassistant.scripts.db_migrator
|
# homeassistant.scripts.db_migrator
|
||||||
# homeassistant.components.sensor.sql
|
# homeassistant.components.sensor.sql
|
||||||
sqlalchemy==1.2.5
|
sqlalchemy==1.2.6
|
||||||
|
|
||||||
# homeassistant.components.statsd
|
# homeassistant.components.statsd
|
||||||
statsd==3.2.1
|
statsd==3.2.1
|
||||||
|
|
Loading…
Add table
Reference in a new issue