You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to build the docker image today using the following command from README
docker build -t updoc .
and got an error
Installed /opt/conda/lib/python3.7/site-packages/jmespath-0.9.4-py3.7.egg
merror: docutils 0.16b0.dev0 is installed but docutils<0.16,>=0.10 is required by {'botocore'}
I think the problem is some dependencies here automatically installs the latest version of docutils (0.16b0.dev0)
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.
@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)updoc/setup.py
Lines 26 to 36 in 300fa1b
which conflicts with the requirements of
botocore
. An easy fix is to addright before
updoc/Dockerfile
Line 11 in 300fa1b
Here is the complete log
Here is the log of building the image after the fix
The text was updated successfully, but these errors were encountered: