jupyter / nbformat

Reference implementation of the Jupyter Notebook format
http://nbformat.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
259 stars 153 forks source link

Fix deprecation warning when importing from jsonschema #368

Closed eladkal closed 1 year ago

eladkal commented 1 year ago

jsonschema v4.18.0 deprecated importing of jsonschema.ErrorTree instead import it via jsonschema.exceptions.ErrorTree

https://github.com/python-jsonschema/jsonschema/releases/tag/v4.18.0

This to avoid warning raised:

 /usr/local/lib/python3.8/site-packages/nbformat/json_compat.py:14:Importing ErrorTree directly from the jsonschema package is deprecated and will become an ImportError. Import it from jsonschema.exceptions instead.
/usr/local/lib/python3.8/site-packages/nbformat/json_compat.py:14:Importing ErrorTree directly from the jsonschema package is deprecated and will become an ImportError. Import it from jsonschema.exceptions instead.
blink1073 commented 1 year ago

I'll cut a release with this early next week.