-
I am currently working on a PR in Autoware Documentation, and there seems to be an issue in Github actions. "deploy-docs" github action fails with the following error:
Here is the PR: autowarefoundation/autoware-documentation#103. I understood that the error occurs in installing these python packages, but can not come up with any solution. Does anyone have any idea how to solve this issue? |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 13 replies
-
It looks this line causes error. pypandoc does not have Actually pypandoc previously have I created PR msabramo/setuptools-markdown#21 but the error cannot be helped until the PR will merge and pypi will update. FYI, there is a similar issue man-group/pytest-plugins#87. |
Beta Was this translation helpful? Give feedback.
-
https://github.com/orgs/autowarefoundation/discussions/286#discussioncomment-2727099 You can check the ci has passed here. |
Beta Was this translation helpful? Give feedback.
-
Hi there. I'm the maintainer of PyPandoc, which seems to be the root error in ops post. In the recent release of PyPandoc (version 1.8), the convert function was removed after a year of being deprecated. |
Beta Was this translation helpful? Give feedback.
-
The solution, to get it to work again, is to switch from pypandoc.convert() to pypandoc.convert_file() or pypandoc.convert_text(), depending on the usage case. |
Beta Was this translation helpful? Give feedback.
https://github.com/orgs/autowarefoundation/discussions/286#discussioncomment-2727099
↑To sum up the comment above, fixing ci solved the problem by removing mdx_unimoji dependency.
See autowarefoundation/autoware-documentation#105
You can check the ci has passed here.