-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using a private API in jsonschema that has now been removed #830
Comments
As a temporary workaround, if anybody encounters this issue, you can 'downgrade' your python3 -m pip install -U 'jsonschema<4.0' |
I just ran into this issue (the I can confirm @richardhboyd's workaround did make the problem go away for me, but this should definitely be fixed upstream. |
@richardhboyd 's PR to fix this is merged, #840. Closing this issue. Thanks Richard! |
The issue was raised with jsonschema, python-jsonschema/jsonschema#843. |
Thanks for the stopgap @richardhboyd |
v0.2.21 has Richard's changes mentioned above. |
core/jsonutils/renamer.py
uses thejsonschema.compat
API which is a private API.The new 4.0.0 and 4.0.1 versions of
jsonschema
removes that API.ref: python-jsonschema/jsonschema#843 (comment)
The text was updated successfully, but these errors were encountered: