Closed p-himik closed 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:
read_table
/.../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)
https://github.com/kszucs/pandahouse/pull/18#issue-253091260
As of 0.25, it is undeprecated...
And pandahouse doesn't specify any particular pandas version, so I guess it's all good now.
pandahouse
pandas
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: