Open dirwin5 opened 2 months ago
@dirwin5, are these changes friendly with pandas<2? When it comes to major upgrades in dependencies, we are always very careful and strategic as to not force everyone to upgrade straight-away. We can always do a quick test on that with the requirements file.
Hi @bemcdonnell, I believe they won't break pandas<2. I ran the all the tests with pandas 1.4.0 and numpy 1.21.0 and they all passed.
Passing single label to .loc rather than list of labels to return series rather than dataframe. This avoids FutureWarning: calling float on single element series and FutureWarning: Series.getitem treating keys as positions is deprecated.
Changed deprecated
delim_whitespace=True
tosep=r'\s+'
.Changed
'\s+'
tor'\s+'
to remove invalid escape sequence '\s' warning.