Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C++ client: Fix docs build by locking sphinx to version 7.1.2 for now #4335

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion sphinx/sphinx.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,14 @@ def sphinxDockerfile = tasks.register('sphinxDockerfile', Dockerfile) {
environmentVariable 'DEEPHAVEN_PROPFILE', 'dh-defaults.prop'
environmentVariable 'DEEPHAVEN_VERSION', project.version

// For the time being we lock the sphinx version to 7.1.2
// This works around the bug described in
// https://github.com/sphinx-doc/sphinx/issues/11605
// We should leave this here until 'breathe' updates their code to be
// compatible with the breaking sphinx change.
runCommand '''set -eux; \\
mkdir /tmp/workspace; \\
python -m pip install sphinx sphinx-autodoc-typehints pyarrow protobuf grpcio bitstring /wheel/*.whl breathe furo
python -m pip install sphinx==7.1.2 sphinx-autodoc-typehints pyarrow protobuf grpcio bitstring /wheel/*.whl breathe furo
'''
}

Expand Down