Well the offending code is inside markdown/htmlparser.py which has been 
rather nastily monkey-patched.

# Import a copy of the html.parser lib as `htmlparser` so we can monkeypatch 
it.# Users can still do `from html import parser` and get the default behavior.
spec = importlib.util.find_spec('html.parser')
htmlparser = importlib.util.module_from_spec(spec)
spec.loader.exec_module(htmlparser)
sys.modules['htmlparser'] = htmlparser

Currently there is no support for importlib.util.find_spec()in PyInstaller 
and nothing we have can force it to work. So no is the answer. You’ll have 
to stick to pip install markdown<3.3.0. Fell free to raise this as an issue 
on the hooks repo <http://github.com/pyinstaller/pyinstaller-hooks-contrib/> 
but as this would be a simple fix for markdown or a very difficult fix for 
us I doubt it’ll get much attention. 

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/6802bd02-4ad1-41b5-a7ae-3dd181ae56fcn%40googlegroups.com.

Reply via email to