From 608eacbeb3b70c8672e1b76bccdf419e353d8a88 Mon Sep 17 00:00:00 2001 From: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Date: Mon, 12 Feb 2024 19:52:25 -0500 Subject: [PATCH] Remove qiskit.org links (#2057) --- CONTRIBUTING.md | 2 +- README.md | 2 +- docs/conf.py | 4 +--- docs/getting_started.rst | 12 ++++-------- qiskit_aer/primitives/__init__.py | 2 +- .../deprecate-pulse-simulator-27cde3ece112c346.yaml | 2 +- .../remove_pulse_simulator-f8de2f6d380f446a.yaml | 2 +- .../0.13/support_backend_v2-9eeb4690199b01d1.yaml | 2 +- setup.py | 2 +- 9 files changed, 12 insertions(+), 18 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4f39f0b9b..514d2c369 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ First read the overall project contributing guidelines. These are all included in the Qiskit documentation: -https://qiskit.org/documentation/contributing_to_qiskit.html +https://github.com/Qiskit/qiskit/blob/main/CONTRIBUTING.md ## Contributing to Aer diff --git a/README.md b/README.md index b579bd3a7..591a56f17 100755 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ We use [GitHub issues](https://github.com/Qiskit/qiskit-aer/issues) for tracking ## Next Steps -Now you're set up and ready to check out some of the other examples from the [Aer documentation](https://qiskit.org/ecosystem/aer/). +Now you're set up and ready to check out some of the other examples from the [Aer documentation](https://qiskit.github.io/qiskit-aer/). ## Authors and Citation diff --git a/docs/conf.py b/docs/conf.py index 0a7e0af31..a38e105fc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - # This code is part of Qiskit. # # (C) Copyright IBM 2018. @@ -146,5 +144,5 @@ html_last_updated_fmt = '%Y/%m/%d' autoclass_content = 'both' intersphinx_mapping = { "matplotlib": ("https://matplotlib.org/stable/", None), - "qiskit": ("https://qiskit.org/documentation/", None), + "qiskit": ("https://docs.quantum.ibm.com/api/qiskit/", None), } diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 725260c52..c3bf9dd1a 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -7,7 +7,7 @@ Getting started Installation ============ Qiskit Aer depends on the main Qiskit package which has its own -`Qiskit Getting Started `__ detailing the +`Qiskit Installation guide `__ detailing the installation options for Qiskit and its supported environments/platforms. You should refer to that first. Then the information here can be followed which focuses on the additional installation specific to Qiskit Aer. @@ -17,12 +17,9 @@ specific to Qiskit Aer. .. tab-item:: Start locally - The simplest way to get started is to follow the getting started 'Start locally' for Qiskit - here `Qiskit Getting Started `__ + The simplest way to get started is to follow the installation guide for Qiskit `here `__ - In your virtual environment where you installed Qiskit simply add ``aer`` to the - extra list in a similar manner to how the extra ``visualization`` support is installed for - Qiskit, i.e: + In your virtual environment where you installed Qiskit, add ``qiskit-aer``, e.g.: .. code:: sh @@ -57,8 +54,7 @@ specific to Qiskit Aer. the latest version of the Qiskit Aer code more efficiently. Since Qiskit Aer depends on Qiskit, and its latest changes may require new or changed - features of Qiskit, you should first follow Qiskit's `"Install from source"` instructions - here `Qiskit Getting Started `__ + features of Qiskit, you should first follow Qiskit's `"Install from source"` instructions `here `__ .. raw:: html diff --git a/qiskit_aer/primitives/__init__.py b/qiskit_aer/primitives/__init__.py index cb02fb085..503cdadd8 100644 --- a/qiskit_aer/primitives/__init__.py +++ b/qiskit_aer/primitives/__init__.py @@ -18,7 +18,7 @@ Primitives (:mod:`qiskit_aer.primitives`) .. currentmodule:: qiskit_aer.primitives This module is Aer implementation of primitives. -See the docs https://qiskit.org/documentation/apidoc/primitives.html for general descriptions. +See the docs https://docs.quantum.ibm.com/api/qiskit/primitives for general descriptions. Classes diff --git a/releasenotes/notes/0.12/deprecate-pulse-simulator-27cde3ece112c346.yaml b/releasenotes/notes/0.12/deprecate-pulse-simulator-27cde3ece112c346.yaml index 2428b4a96..d978c95bc 100644 --- a/releasenotes/notes/0.12/deprecate-pulse-simulator-27cde3ece112c346.yaml +++ b/releasenotes/notes/0.12/deprecate-pulse-simulator-27cde3ece112c346.yaml @@ -4,7 +4,7 @@ deprecations: The :class:`~.PulseSimulator` backend has been deprecated and will be removed in a future release. If you're using the :class:`~.PulseSimulator` backend to perform pulse level simulation, instead you should use the - `Qiskit Dynamics `__ library + `Qiskit Dynamics `__ library instead to perform the simulation. Qiskit Dynamics provides a more flexible and robust pulse level simulation framework than the :class:`~.PulseSimulator` backend. diff --git a/releasenotes/notes/0.13/remove_pulse_simulator-f8de2f6d380f446a.yaml b/releasenotes/notes/0.13/remove_pulse_simulator-f8de2f6d380f446a.yaml index 09bec11a6..609e3a67f 100644 --- a/releasenotes/notes/0.13/remove_pulse_simulator-f8de2f6d380f446a.yaml +++ b/releasenotes/notes/0.13/remove_pulse_simulator-f8de2f6d380f446a.yaml @@ -3,4 +3,4 @@ upgrade: - | Qiskit Aer 0.13 has dropped support for ``PulseSimulator`` following deprecation warnings started in Qiskit Aer 0.12. Use Qiskit Dynamics to run pulse-level simulation. - https://qiskit.org/ecosystem/dynamics/ + https://qiskit-extensions.github.io/qiskit-dynamics/ diff --git a/releasenotes/notes/0.13/support_backend_v2-9eeb4690199b01d1.yaml b/releasenotes/notes/0.13/support_backend_v2-9eeb4690199b01d1.yaml index 2579d7179..1c473666d 100644 --- a/releasenotes/notes/0.13/support_backend_v2-9eeb4690199b01d1.yaml +++ b/releasenotes/notes/0.13/support_backend_v2-9eeb4690199b01d1.yaml @@ -4,4 +4,4 @@ features: Update Aer Backend to BackendV2. Refer to `#1681`. BackendV2 is differs from BackendV1 in the following points: backend.name() changes to backend.name string attribute, the configuration attribute no longer exists, and the options attribute is added. For more information about BackendV2 is - `here`. \ No newline at end of file + `here`. \ No newline at end of file diff --git a/setup.py b/setup.py index 20c5268c8..ba1ef7dcb 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ setup( long_description_content_type="text/markdown", url="https://github.com/Qiskit/qiskit-aer", author="AER Development Team", - author_email="hello@qiskit.org", + author_email="qiskit@us.ibm.com", license="Apache 2.0", classifiers=classifiers, python_requires=">=3.7",