We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f3881 commit 4c494a3Copy full SHA for 4c494a3
docs/conf.py
@@ -120,6 +120,14 @@
120
napoleon_google_docstring = True
121
napoleon_numpy_docstring = False
122
123
+# Autosummary generates stub filenames based on the import name.
124
+# Sometimes, two distinct interfaces only differ in capitalization; this
125
+# creates a problem on case-insensitive OS/filesystems like macOS. So,
126
+# we manually avoid the clash by renaming one of the files.
127
+autosummary_filename_map = {
128
+ "qiskit.circuit.library.iqp": "qiskit.circuit.library.iqp_function",
129
+}
130
+
131
132
# ----------------------------------------------------------------------------------
133
# Doctest
0 commit comments