Skip to content

Commit 3de4cc2

Browse files
authored
Update intersphinx mapping and other URLs pointing to IQP Classic (#1562)
The documentation source of truth is moving to https://quantum.cloud.ibm.com/.
1 parent 8591da4 commit 3de4cc2

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,12 @@
157157
autoclass_content = "both"
158158
intersphinx_mapping = {
159159
"matplotlib": ("https://matplotlib.org/stable/", None),
160-
"qiskit": ("https://docs.quantum.ibm.com/api/qiskit/", None),
160+
"qiskit": ("https://quantum.cloud.ibm.com/docs/api/qiskit/", None),
161161
"uncertainties": ("https://pythonhosted.org/uncertainties", None),
162162
"pandas": ("http://pandas.pydata.org/docs/", None),
163163
"qiskit_aer": ("https://qiskit.github.io/qiskit-aer/", None),
164164
"qiskit_dynamics": ("https://qiskit-community.github.io/qiskit-dynamics/", None),
165-
"qiskit_ibm_runtime": ("https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/", None),
165+
"qiskit_ibm_runtime": ("https://quantum.cloud.ibm.com/docs/api/qiskit-ibm-runtime/", None),
166166
}
167167

168168

docs/howtos/cloud_service.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Saving
2020
.. note::
2121
This guide requires :external+qiskit_ibm_runtime:doc:`qiskit-ibm-runtime <index>` version 0.15 and up, which can be installed with ``python -m pip install qiskit-ibm-runtime``.
2222
For how to migrate from the older ``qiskit-ibm-provider`` to :external+qiskit_ibm_runtime:doc:`qiskit-ibm-runtime <index>`,
23-
consult the `migration guide <https://docs.quantum.ibm.com/api/migration-guides/qiskit-runtime-from-provider>`_.\
23+
consult the `migration guide <https://quantum.cloud.ibm.com/docs/migration-guides/qiskit-runtime-from-ibm-provider>`_.\
2424

2525
You must run the experiment on a real IBM
2626
backend and not a simulator to be able to save the experiment data. This is done by calling

docs/howtos/rerun_analysis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Solution
1414
.. note::
1515
This guide requires :external+qiskit_ibm_runtime:doc:`qiskit-ibm-runtime <index>` version 0.15 and up, which can be installed with ``python -m pip install qiskit-ibm-runtime``.
1616
For how to migrate from the older ``qiskit-ibm-provider`` to :external+qiskit_ibm_runtime:doc:`qiskit-ibm-runtime <index>`,
17-
consult the `migration guide <https://docs.quantum.ibm.com/api/migration-guides/qiskit-runtime-from-provider>`_.\
17+
consult the `migration guide <https://quantum.cloud.ibm.com/docs/migration-guides/qiskit-runtime-from-ibm-provider>`_.\
1818

1919
Once you recreate the exact experiment you ran and all of its parameters and options,
2020
you can call the :meth:`.ExperimentData.add_jobs` method with a list of :class:`Job

docs/howtos/runtime_sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this example, we will pass in a :class:`qiskit_ibm_runtime.SamplerV2` object
1919

2020
.. note::
2121
If a sampler object is passed to :meth:`qiskit_experiments.framework.BaseExperiment.run` then the `run options
22-
<https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.SamplerExecutionOptionsV2>`_ of the
22+
<https://quantum.cloud.ibm.com/docs/api/qiskit-ibm-runtime/options-sampler-execution-options-v2>`_ of the
2323
sampler object are used. The execution options set by the experiment are ignored.
2424

2525
.. jupyter-input::

docs/release_notes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,15 +1150,15 @@ Package Upgrades
11501150
from 0.24 for ``qiskit-terra`` to 0.45 for ``qiskit``. For more information on
11511151
the renaming of Qiskit, see the `Qiskit repository renaming plan
11521152
<https://github.com/Qiskit/RFCs/blob/5793e78dc8e4d8d17f8ef7fad789c6c5ebd3a061/0011-repo-rename.md>`__
1153-
and the `Qiskit 1.0 migration guide <https://docs.quantum.ibm.com/api/migration-guides/qiskit-1.0>`__.
1153+
and the `Qiskit 1.0 migration guide <https://quantum.cloud.ibm.com/docs/migration-guides/qiskit-1.0>`__.
11541154

11551155
.. releasenotes/notes/0.6/runtime-provider-support-5358b72ec0035419.yaml @ b'3b039c5df784748597261d38599c1c7cb2074377'
11561156
11571157
- With the impending deprecation of the ``qiskit-ibm-provider`` package, support for
11581158
``qiskit-ibm-provider`` is now deprecated and will be removed
11591159
in the next release. Users should migrate to :external+qiskit_ibm_runtime:doc:`qiskit-ibm-runtime <index>` following the
11601160
`runtime migration guide
1161-
<https://docs.quantum.ibm.com/api/migration-guides/qiskit-runtime-from-provider>`_.
1161+
<https://quantum.cloud.ibm.com/docs/migration-guides/qiskit-runtime-from-ibm-provider>`_.
11621162
:external+qiskit_ibm_runtime:doc:`qiskit-ibm-runtime <index>` is not listed as a dependency for compatibility reasons, but users
11631163
will need it to run experiments on IBM backends.
11641164

docs/tutorials/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Installation
66
============
77

88
Qiskit Experiments is built on top of Qiskit, so we recommend that you first install
9-
Qiskit following its `installation guide <https://docs.quantum.ibm.com/start/install>`__. Qiskit
9+
Qiskit following its `installation guide <https://quantum.cloud.ibm.com/docs/guides/install-qiskit>`__. Qiskit
1010
Experiments supports the same platforms as Qiskit itself and Python versions 3.9 through 3.13.
1111

1212
Qiskit Experiments releases can be installed via the Python package manager ``pip``

docs/tutorials/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Tutorials
22
=========
33

44
These tutorials assume some familiarity with Qiskit (on the level of
5-
`IBM Quantum Documentation's introductory guides <https://docs.quantum.ibm.com>`__) but no knowledge of Qiskit Experiments.
5+
`IBM Quantum Documentation's introductory guides <https://quantum.cloud.ibm.com/docs>`__) but no knowledge of Qiskit Experiments.
66
They're suitable for beginners who want to get started with the package.
77

88
.. _basics:

qiskit_experiments/framework/base_experiment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def _run_jobs(
383383
sampler = Sampler(self.backend)
384384

385385
# have to hand set some of these options
386-
# see https://docs.quantum.ibm.com/api/qiskit-ibm-runtime
386+
# see https://quantum.cloud.ibm.com/docs/api/qiskit-ibm-runtime
387387
# /qiskit_ibm_runtime.options.SamplerExecutionOptionsV2
388388
if "init_qubits" in run_options:
389389
sampler.options.execution.init_qubits = run_options["init_qubits"]

0 commit comments

Comments
 (0)