Open
Description
If the pypandoc
module is installed but pandoc
is not then import pypandoc
will succeed but the pypandoc
module will not have a convert
attribute when imported, leading to an AttributeError
being raised, which common_setup
does not currently catch.
The workaround for us is to install pandoc
before doing our pip
installs so that the convert
attribute exists when it needs to.
It would be nice if common_setup
could catch the AttributeError
, so that the installation order wouldn't matter.