fastparquet icon indicating copy to clipboard operation
fastparquet copied to clipboard

fastparquet 0.3.2, Pandas 1.0.0 deprecation warnings, RangeIndex

Open apiszcz opened this issue 5 years ago • 3 comments

lib\fastparquet\writer.py:655: FutureWarning: RangeIndex._start is deprecated and will be removed in a future version. Use RangeIndex.start instead
  index_cols = [{'name': index_cols.name, 'start': index_cols._start,

lib\fastparquet\writer.py:656: FutureWarning: RangeIndex._step is deprecated and will be removed in a future version. Use RangeIndex.step instead
  'stop': index_cols._stop, 'step': index_cols._step,
Traceback (most recent call last):
  File "lib\_man\

apiszcz avatar Jan 20 '20 10:01 apiszcz

actually it's more:

fastparquet/writer.py:656: FutureWarning: RangeIndex._stop is deprecated and will be removed in a future version. Use RangeIndex.stop instead

hochreitercorpuls avatar Jan 31 '20 06:01 hochreitercorpuls

I also got:

fastparquet/dataframe.py:5: FutureWarning: pandas.core.index is deprecated and will be removed in a future version. The public classes are available in the top-level namespace. from pandas.core.index import CategoricalIndex, RangeIndex, Index, MultiIndex

benjub avatar Feb 04 '20 23:02 benjub

Missed the latter point, ut otherwise fixed in #479

martindurant avatar Feb 07 '20 18:02 martindurant