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
ProtocolError: (-32603, 'Server error: File "/opt/trex/v3.03/external_libs/pyyaml-3.11/python3/yaml/constructor.py", line 126, in construct_mapping | AttributeError: module \'collections\' has no attribute \'Hashable\'\n')
The collections module now uses collections.abc.Hashable instead of collections.Hashable. Pyyaml moved to the new style since v5.1 (related PR).
Is it possible to move to a more recent version of the Pyyaml?
The text was updated successfully, but these errors were encountered:
"Is it possible to move to a more recent version of the Pyyaml?" seems to be more of the "feature" request.
Personally, could not wait for its fulfillment and used the advice given. It works.
On v3.03 running this code:
results in an error:
The
collections
module now usescollections.abc.Hashable
instead ofcollections.Hashable
. Pyyaml moved to the new style since v5.1 (related PR).Is it possible to move to a more recent version of the Pyyaml?
The text was updated successfully, but these errors were encountered: