8000 Upgrade influxdb to 4.1.1 by fabaff · Pull Request #9652 · home-assistant/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Upgrade influxdb to 4.1.1 #9652

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 2, 2017
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/influxdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from homeassistant.helpers.entity_values import EntityValues
import homeassistant.helpers.config_validation as cv

REQUIREMENTS = ['influxdb==3.0.0']
REQUIREMENTS = ['influxdb==4.1.1']

_LOGGER = logging.getLogger(__name__)

Expand Down
3 changes: 2 additions & 1 deletion homeassistant/components/sensor/influxdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

_LOGGER = logging.getLogger(__name__)

REQUIREMENTS = ['influxdb==4.1.1']

DEFAULT_HOST = 'localhost'
DEFAULT_PORT = 8086
DEFAULT_DATABASE = 'home_assistant'
Expand All @@ -37,7 +39,6 @@
CONF_MEASUREMENT_NAME = 'measurement'
CONF_WHERE = 'where'

REQUIREMENTS = ['influxdb==3.0.0']

_QUERY_SCHEME = vol.Schema({
vol.Required(CONF_NAME): cv.string,
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ https://github.com/wokar/pylgnetcast/archive/v0.2.0.zip#pylgnetcast==0.2.0

# homeassistant.components.influxdb
# homeassistant.components.sensor.influxdb
influxdb==3.0.0
influxdb==4.1.1

# homeassistant.components.insteon_local
insteonlocal==0.52
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ holidays==0.8.1

# homeassistant.components.influxdb
# homeassistant.components.sensor.influxdb
influxdb==3.0.0
influxdb==4.1.1

# homeassistant.components.dyson
libpurecoollink==0.4.2
Expand Down
0