madmaze / pytesseract

A Python wrapper for Google Tesseract
Apache License 2.0
5.82k stars 721 forks source link

Deprecation warning raised in python 3.12 #519

Closed plokmijnuhby closed 1 year ago

plokmijnuhby commented 1 year ago

Importing the module calls pkgutil.find_loader, which as of python 3.12 is deprecated.

It appears this function is called purely to determine whether certain modules are available. This can be achieved in python 3.12 by instead attempting to import the module, and catching ModuleNotFoundError exceptions.

stefan6419846 commented 1 year ago

Do you want to submit a corresponding PR to test against Python 3.12 as well and add the mentioned fix?