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
Since Python 3.12. removed the long-deprecated pkgutil.ImpImporter class any import zbarlight fails with:
import zbarlight
File "/env/lib/python3.12/site-packages/zbarlight/__init__.py", line 3, in <module>
import pkg_resources
File "/env/lib/python3.12/site-packages/pkg_resources/__init__.py", line 2191, in <module>
register_finder(pkgutil.ImpImporter, find_on_path)
^^^^^^^^^^^^^^^^^^^
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?
The text was updated successfully, but these errors were encountered:
Since Python 3.12. removed the long-deprecated pkgutil.ImpImporter class any import zbarlight fails with:
The text was updated successfully, but these errors were encountered: