Sphinx dependency clash #9253
Replies: 1 comment 1 reply
|
This is an expected limitation of how AWS CLI v1 is packaged and supported. AWS CLI v1 pins documentation dependencies (including There is no plan to relax these dependency pins in AWS CLI v1. The CLI is treated as an application, not a reusable Python library. What you should do instead: Do not install Use AWS CLI v2 for normal usage. AWS CLI v2 is a self-contained binary and does not install Python dependencies into your environment, so it avoids all dependency conflicts entirely. If you must use AWS CLI v1 (for legacy reasons), install it in an isolated environment:
Example with pipx: pipx install awscli This keeps In short:
|
Uh oh!
There was an error while loading. Please reload this page.
Hi, is there a plan on updating to the newer version of Sphinx?
Because currently when trying to have
awscliand the latestsphinxas dependencies in the same project causes dependency error becauseawsclirequiresdocutils<0.17,>=0.10and the newestsphinxusesdocutils>=0.20.All reactions