Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/recorder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from .const import DATA_INSTANCE
from .util import session_scope

REQUIREMENTS = ['sqlalchemy==1.2.17']
REQUIREMENTS = ['sqlalchemy==1.2.18']

_LOGGER = logging.getLogger(__name__)

Expand Down
9 changes: 2 additions & 7 deletions homeassistant/components/sensor/sql.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""
Sensor from an SQL Query.

For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.sql/
"""
"""Sensor from an SQL Query."""
import decimal
import datetime
import logging
Expand All @@ -20,7 +15,7 @@

_LOGGER = logging.getLogger(__name__)

REQUIREMENTS = ['sqlalchemy==1.2.17']
REQUIREMENTS = ['sqlalchemy==1.2.18']

CONF_COLUMN_NAME = 'column'
CONF_QUERIES = 'queries'
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,7 @@ spotipy-homeassistant==2.4.4.dev1

# homeassistant.components.recorder
# homeassistant.components.sensor.sql
sqlalchemy==1.2.17
sqlalchemy==1.2.18

# homeassistant.components.sensor.srp_energy
srpenergy==1.0.5
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ somecomfort==0.5.2

# homeassistant.components.recorder
# homeassistant.components.sensor.sql
sqlalchemy==1.2.17
sqlalchemy==1.2.18

# homeassistant.components.sensor.srp_energy
srpenergy==1.0.5
Expand Down