Skip to content

Commit

Permalink
Merge branch 'main' into once-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish authored Nov 10, 2024
2 parents a0145b3 + d81abce commit 4f77db1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@
napoleon_google_docstring = True
napoleon_numpy_docstring = False

# Autosummary generates stub filenames based on the import name.
# Sometimes, two distinct interfaces only differ in capitalization; this
# creates a problem on case-insensitive OS/filesystems like macOS. So,
# we manually avoid the clash by renaming one of the files.
autosummary_filename_map = {
"qiskit.circuit.library.iqp": "qiskit.circuit.library.iqp_function",
}


# ----------------------------------------------------------------------------------
# Doctest
Expand Down

0 comments on commit 4f77db1

Please sign in to comment.