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
Could we add version boundaries here like we do for other libraries? Older versions (e.g. 1.0.2) of importlib_resources (if pinned) will throw errors like below
File "/env/lib/python3.7/site-packages/jsonschema/__init__.py", line 29, in <module>
from jsonschema.validators import (
File "/env/lib/python3.7/site-packages/jsonschema/validators.py", line 349, in <module>
meta_schema=_utils.load_schema("draft3"),
File "/env/lib/python3.7/site-packages/jsonschema/_utils.py", line 60, in load_schema
path = resources.files(__package__).joinpath(f"schemas/{name}.json")
AttributeError: module 'importlib_resources' has no attribute 'files'
The text was updated successfully, but these errors were encountered:
Could we add version boundaries here like we do for other libraries? Older versions (e.g. 1.0.2) of
importlib_resources
(if pinned) will throw errors like belowThe text was updated successfully, but these errors were encountered: