Replace traits find_resource with importlib.resources in examples
https://github.com/enthought/chaco/blob/080aaf5a870f3a8fc33df39f9daf106af1a116a3/examples/demo/basic/image_from_file.py#L58-L60
https://github.com/enthought/chaco/blob/e9af395b5c3bc6364d9c665c9e8d0ddfafc2ac90/examples/demo/zoomed_plot/wav_to_numeric.py#L45-L47 https://github.com/enthought/chaco/blob/e9af395b5c3bc6364d9c665c9e8d0ddfafc2ac90/examples/demo/zoomed_plot/zoom_plot.py#L31-L33
Does this require the examples to to moved inside the package or to make examples a python package itself with an __init__.py file? (this is already planned when we contribute them to etsdemo). I am having some trouble getting things to work without this, and I believe this is the case (at least with importlib_resources / importlib.resources pre python 3.9 or something like that?)
Also we should use importlib_resources for the time being correct since importlib.resources was only introduced to the standard library in python 3.7
Related: enthought/traits#1500