switch-model / switch

A Modern Platform for Planning High-Renewable Power Systems
http://switch-model.org/
Other
130 stars 85 forks source link

Pandas Sort Deprecated #126

Open AaronHolm opened 5 years ago

AaronHolm commented 5 years ago

New installation fails as Pandas deprecated sort() in favor of sort_values() or sort_index(). Should I require a specific pandas version before version 0.20 or attempt to update the calls to sort() with sort_values()?

josiahjohnston commented 5 years ago

Thanks for spotting this and alerting us!

One-off workaround is manually installing a lower version of pandas before installing switch. Quick fix is pegging to a lower version in setup.py (<=) . Better fix is updating to new calls and pegging to higher version (>=).


Sent from a phone; please excuse brevity and typos

On Sep 21, 2019, at 8:03 AM, Aaron Holm notifications@github.com wrote:

New installation fails as Pandas deprecated sort() in favor of sort_values() or sort_index(). Should I require a specific pandas version before version 0.20 or attempt to update the calls to sort() with sort_values()?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

AaronHolm commented 5 years ago

I went with the quick fix for now, but will look at updating to new calls as I explore, thanks!