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
# activate conda
cd docs
pip install -r requirements-docs.txt
cd ..
pip install -e .[all]
cd docs
./build.sh
output:
'meta': (nodes.meta, 'docutils.nodes.meta'), # type: ignore[attr-defined]
AttributeError: module 'docutils.nodes' has no attribute 'meta'
make: *** [html] Error 1
Its because awscli>=1.27.10 requires docutils<0.17,>=0.10, while our doc build use sphinx==7.1.2 which requires docutils<0.21,>=0.18.1 pip install -e .[all] gets docutils==0.16 from awscli>=1.27.10 pip install -r requirements-docs.txt gets docutils==0.19 from sphinx==7.1.2
The doc build only works with docutils==0.19
Profile:
pip install git+https://github.com/aws/aws-cli.git@v2 18.50s user 10.30s system 57% cpu 49.714 total
pip install 'awscli>=1.27.10' 1.36s user 0.56s system 77% cpu 2.468 total
bug reproduce:
output:
Its because
awscli>=1.27.10
requiresdocutils<0.17,>=0.10
, while our doc build usesphinx==7.1.2
which requiresdocutils<0.21,>=0.18.1
pip install -e .[all]
getsdocutils==0.16
fromawscli>=1.27.10
pip install -r requirements-docs.txt
getsdocutils==0.19
fromsphinx==7.1.2
The doc build only works with
docutils==0.19
Profile:
pip install git+https://github.com/aws/aws-cli.git@v2 18.50s user 10.30s system 57% cpu 49.714 total pip install 'awscli>=1.27.10' 1.36s user 0.56s system 77% cpu 2.468 total
30 seconds slower install from source
They are not publishing this to pypi, if we want to install it we should install from source
Closed PR: #4474
Version & Commit info:
sky -v
: PLEASE_FILL_INsky -c
: PLEASE_FILL_INThe text was updated successfully, but these errors were encountered: