WattTime / pyiso

Python client libraries for ISO and other power grid data sources.
http://pyiso.readthedocs.org/
Other
237 stars 110 forks source link

Fix BPA client so that it's compatible with pandas>=0.21 #175

Closed r24mille closed 2 years ago

r24mille commented 6 years ago

Pandas 0.21 came out on October 27th and deprecated read_excel(parse_cols=[]) in favour of read_excel(usecols=[]).

https://pandas.pydata.org/pandas-docs/version/0.21/whatsnew.html#deprecations

In doing so broke the BPA client which pases keyword arguments into BaseClient.parse_to_df(...) to read Excel files. I took a stab with #174 but the proper fix is to actually: