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
Replace deprecated pkg_resources with importlib.resources (#208)
* Replace deprecated pkg_resources with importlib.resources
- Replace pkg_resources.resource_exists() with importlib.resources.files() and .is_file()
- Replace pkg_resources.resource_filename() with importlib.resources.as_file() context manager
- Fix bare except clause for better exception handling
- Resolves deprecation warning and future-proofs against pkg_resources removal
drop support for python < 3.9
- fixes readthedocs error
Fixes#207
0 commit comments