Skip to content

Commit 59450da

Browse files
committed
Dependencies: Update to influxio==0.2.0
This unpins the upper version bound of `dask` in `influxio`.
1 parent 55c05e1 commit 59450da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ develop = [
118118
"validate-pyproject<0.17",
119119
]
120120
influxdb = [
121-
"influxio==0.1.2",
121+
"influxio==0.2.0",
122122
]
123123
io = [
124124
"cr8",

tests/io/influxdb/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"influxdb_client", reason="Skipping InfluxDB tests because 'influxdb-client' package is not installed"
1313
)
1414

15-
from influxio.model import InfluxDbAdapter
15+
from influxio.adapter import InfluxDbApiAdapter
1616

1717

1818
def test_influxdb2_load_table(caplog, cratedb, influxdb):
@@ -27,7 +27,7 @@ def test_influxdb2_load_table(caplog, cratedb, influxdb):
2727
df = dff.make("dateindex")
2828

2929
# Populate source database.
30-
adapter = InfluxDbAdapter.from_url(influxdb_url)
30+
adapter = InfluxDbApiAdapter.from_url(influxdb_url)
3131
adapter.ensure_bucket()
3232
adapter.write_df(df)
3333

0 commit comments

Comments
 (0)