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
I'm getting deprecation warnings from jsonschema.compat. This would be a pretty quick fix, i.e. just import from collections.abs instead of collections.
This can be reproduced by running:
python3.8 -Wall -c "import jsonschema.compat"
jsonschema/compat.py:6: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working
The text was updated successfully, but these errors were encountered:
I'm getting deprecation warnings from
jsonschema.compat
. This would be a pretty quick fix, i.e. just import fromcollections.abs
instead ofcollections
.This can be reproduced by running:
The text was updated successfully, but these errors were encountered: