nchammas commented on PR #44727: URL: https://github.com/apache/spark/pull/44727#issuecomment-1891270353
The proximate reason for this failure is that we install `pydata_sphinx_theme` without a version qualifier here: https://github.com/apache/spark/blob/9f061b0d03a3847f48329f70e05e2936aeac91c9/.github/workflows/build_and_test.yml#L705 Note that this is separate from the constraint that `sphinx==4.5.0`, so pip installs `pydata_sphinx_theme` at version 0.15.1. This in turn requires `sphinx>=5.0`, which pulls in the incompatible Sphinx extensions mentioned in the error you are seeing. A longer term solution would be to compile all of our requirements per Python version and install them in one go. That's the only way pip is going to have the information it needs to prevent this kind of problem from occurring. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
