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
When running an installation on clean python environment, Bravado gets installed with the newest jsonschema, currently >=4.0.0
jsonschema 4.0.0 introduced support for newer draft versions, which does not follow the previous pattern of http://json-schema.org/draft-\d+/schema and with values like http://json-schema.org/draft-2019-09/schema
In bravado_core/model.py:883 your regexp for excluding jsonschema's default schemas should be changed to 'http://json-schema.org/draft-\d+(-\d+)?/schema'
Currently, when using bravado in offline environments, attempting to make request fails and crashes the program
The text was updated successfully, but these errors were encountered:
When running an installation on clean python environment, Bravado gets installed with the newest jsonschema, currently >=4.0.0
jsonschema 4.0.0 introduced support for newer draft versions, which does not follow the previous pattern of
http://json-schema.org/draft-\d+/schema
and with values likehttp://json-schema.org/draft-2019-09/schema
In
bravado_core/model.py:883
your regexp for excluding jsonschema's default schemas should be changed to'http://json-schema.org/draft-\d+(-\d+)?/schema'
Currently, when using bravado in offline environments, attempting to make request fails and crashes the program
The text was updated successfully, but these errors were encountered: