antoinecarme / pyaf

PyAF is an Open Source Python library for Automatic Time Series Forecasting built on top of popular pydata modules.
BSD 3-Clause "New" or "Revised" License
458 stars 73 forks source link

Warning Hunt : Pandas warning in travis-ci reports #93

Closed antoinecarme closed 6 years ago

antoinecarme commented 6 years ago

Following :

https://travis-ci.org/antoinecarme/pyaf

This warning occurs a lot in PyAF tests.

/home/travis/virtualenv/python3.6.3/lib/python3.6/site-packages/pandas/core/frame.py:6211: FutureWarning: Sorting because non-concatenation axis is not aligned. A future version
of pandas will change to not sort by default.

This is not critical, but need to worry about (some changes in underlying pandas calls). It makes a lot of noise in non-regression tests reports.

antoinecarme commented 6 years ago

There is also a difference in the way DateOffset objects are stringified :

TimeDelta=<DateOffset: kwds={'months': 3}>

TimeDelta=<DateOffset: months=3> 

Need to validate these differences (reduce noise)