ukoethe / vigra

a generic C++ library for image analysis
http://ukoethe.github.io/vigra/
Other
406 stars 191 forks source link

Use importlib.reload instead of imp.reload #560

Closed dvzrv closed 4 months ago

dvzrv commented 4 months ago

The imp module has been deprecated since Python 3.4 and is removed in Python 3.12. Replace its use with its replacement in the importlib module.

hmaarrfk commented 4 months ago

Thank you!