デスクトップのConda-forgeの環境だと特に問題なかったのに、
GCP_Ubuntu上のPandasでread_excelやろうとしたら、↓のエラーが出た。
xlrdがxlsxに対応しなくなったのが原因のようです。
xlrd.biffh.XLRDError: Excel xlsx file; not supported
openpyxlを使えば回避できる。(インストール要)
df = pd.read_excel('hogehoge.xlsx', engine='openpyxl')
2.0.0でそうなった模様
https://xlrd.readthedocs.io/en/latest/changes.html
Discussion