Open Haoen-Cui opened 4 years ago
I also noticed a warning in the log after my proposed fix
The HTML pages are in _build/html.
/opt/conda/lib/python3.7/site-packages/sphinx_rtd_theme-0.4.3-py3.7.egg/sphinx_rtd_theme/search.html:20: RemovedInSphinx30Warning: To modify script_files in the theme is deprecated. Please insert a <script> tag directly in your theme instead.
{{ super() }}
I am not familiar with the topic would like like some help.
@jameslamb I think you will be able to help with this issue :blush:
@Haoen-Cui you can safely ignore this warning. It's outside your control, for all intents and purposes.
For the botocore
issue, it is fixed right? Instead of adding RUN conda install ...
, did you try adding docutils
to the definition of your conda environment? If you do that, conda
should be smart enough to resolve to a version that meets the requirements. This is a better long-term solution because it means you'll get newer versions of docutils
as botocore
evolves and bumps its max allowed version of docutils
.
I tried to build the docker image today using the following command from
README
and got an error
I think the problem is some dependencies here automatically installs the latest version of
docutils
(0.16b0.dev0) https://github.com/uptake/updoc/blob/300fa1b56ec5ebea97a129c57a6de6a0e86446d6/setup.py#L26-L36 which conflicts with the requirements ofbotocore
. An easy fix is to addright before https://github.com/uptake/updoc/blob/300fa1b56ec5ebea97a129c57a6de6a0e86446d6/Dockerfile#L11
Here is the complete log
Here is the log of building the image after the fix