kszucs / pandahouse

Pandas interface for Clickhouse database
MIT License
228 stars 70 forks source link

FutureWarning: read_table is deprecated #20

Closed p-himik closed 4 years ago

p-himik commented 5 years ago

https://github.com/kszucs/pandahouse/blob/master/pandahouse/convert.py#L78 still uses read_table which results in this warning with pandas 0.24.2:

/.../lib/python3.7/site-packages/pandahouse/convert.py:77: FutureWarning: read_table is deprecated, use read_csv instead, passing sep='\t'.
  na_values=set(), keep_default_na=False, **kwargs)
haakonvt commented 5 years ago

https://github.com/kszucs/pandahouse/pull/18#issue-253091260

haakonvt commented 4 years ago

As of 0.25, it is undeprecated...

p-himik commented 4 years ago

And pandahouse doesn't specify any particular pandas version, so I guess it's all good now.