You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I think it would be nice to have a requirements.txt in the top repository folder, listing all the python packages required to compile the code, with the supported version. I noticed for instance that the code cannot be compiled with the latest version of pyyaml(>=5.4), since the load function now requires also the Loader to be specified automatically.
The text was updated successfully, but these errors were encountered:
This sounds like a good solution to this issue. FWIW, I found that you could fix the immediate issue by replacing load with safe_load, as per this SO post.
Hi,
I think it would be nice to have a requirements.txt in the top repository folder, listing all the python packages required to compile the code, with the supported version. I noticed for instance that the code cannot be compiled with the latest version of
pyyaml
(>=5.4), since theload
function now requires also theLoader
to be specified automatically.The text was updated successfully, but these errors were encountered: