Using PROC PYTHON with the SAS Viya platform and Pandas version 3.0.0 results in the following error:
ERROR: Unhandled Python exception.
This issue occurs due to changes to Pandas version 3.0.0 that are not compatible with the current installation of the SAS Viya platform.
To determine the version of Pandas that Python uses, submit the following code and review the new information that is written to the log:
proc python;
submit;
import pandas as pd
print(pd.__version__)
endsubmit;
quit;
There is no workaround for this issue.