Skip to content

Commit f83fbe0

Browse files
Disable broken symbols. (#5165)
1 parent de1fa43 commit f83fbe0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dev_tools/docs/build_api_docs.py

+5
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ def generate_cirq():
9595
site_path=FLAGS.site_path,
9696
callbacks=[public_api.local_definitions_filter, filter_unwanted_inherited_methods],
9797
extra_docs=_doc.RECORDED_CONST_DOCS,
98+
private_map={
99+
# Opt to not build docs for these paths for now since they error.
100+
"cirq.experiments": ["CrossEntropyResultDict", "GridInteractionLayer"],
101+
"cirq.experiments.random_quantum_circuit_generation": ["GridInteractionLayer"],
102+
},
98103
)
99104
doc_controls.decorate_all_class_attributes(
100105
doc_controls.do_not_doc_inheritable, networkx.DiGraph, skip=[]

0 commit comments

Comments
 (0)