From 67e53fef8e4e7b1c99d6d2f86627a0980d2129a7 Mon Sep 17 00:00:00 2001 From: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:42:42 -0500 Subject: [PATCH] Fix CI for docs guide (#578) --- docs_guide/conf.py | 2 +- docs_guide/sphinx_guide/how_to_add_code.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_guide/conf.py b/docs_guide/conf.py index d59340b1..bcaf9dcc 100644 --- a/docs_guide/conf.py +++ b/docs_guide/conf.py @@ -27,5 +27,5 @@ intersphinx_mapping = { "sphinx": ("https://www.sphinx-doc.org/en/master/", None), "qiskit": ("https://qiskit.org/documentation/", None), - "qiskit-ibm-runtime": ("https://qiskit.org/documentation/partners/qiskit_ibm_runtime/", None), + "qiskit-ibm-runtime": ("https://qiskit.org/ecosystem/ibm-runtime/", None), } diff --git a/docs_guide/sphinx_guide/how_to_add_code.rst b/docs_guide/sphinx_guide/how_to_add_code.rst index 610010d5..1188ce3e 100644 --- a/docs_guide/sphinx_guide/how_to_add_code.rst +++ b/docs_guide/sphinx_guide/how_to_add_code.rst @@ -65,7 +65,7 @@ The output would be this cell: qc = QuantumCircuit(2) qc.h(0) qc.cx(0,1) - qc.draw('mpl') + qc.draw('mpl', style='iqp') .. note::