From c7deea90f7c59eec09775957304e4533d0fb4cc6 Mon Sep 17 00:00:00 2001 From: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:25:12 -0500 Subject: [PATCH] Remove links to qiskit.org (#40) Co-authored-by: Jake Lishman --- CONTRIBUTING.md | 2 +- README.md | 4 ++-- docs/_templates/theme_variables.jinja | 8 -------- docs/conf.py | 3 +-- setup.py | 2 +- 5 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 docs/_templates/theme_variables.jinja diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 20fdd73..dbb8a77 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 qiskit-neko diff --git a/README.md b/README.md index 7740bc7..3e37a3f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![License](https://img.shields.io/github/license/Qiskit/qiskit-neko.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0) - You can see the full rendered docs at: - + This repository contains integration tests for Qiskit. These tests are used @@ -11,7 +11,7 @@ for primarily for two purposes as backwards compatibility testing for Qiskit to validate that changes proposed to any Qiskit project do not break functionality from previous release and to validate that functionality works as expected with different providers. A provider in Qiskit is a package that -provides [backend](https://qiskit.org/documentation/stubs/qiskit.providers.BackendV2.html) +provides [backend](https://docs.quantum.ibm.com/api/qiskit/qiskit.providers.BackendV2) objects that provide an interface to Quantum hardware or a simulator. ## Installing qiskit-neko diff --git a/docs/_templates/theme_variables.jinja b/docs/_templates/theme_variables.jinja deleted file mode 100644 index 625a44f..0000000 --- a/docs/_templates/theme_variables.jinja +++ /dev/null @@ -1,8 +0,0 @@ -{%- set external_urls = { - 'github': 'https://github.com/Qiskit/retworkx', - 'docs': 'https://retworkx.readthedocs.io/en/stable/', - 'slack': 'https://qiskit.slack.com', - 'home': 'https://qiskit.org/', - 'resources': 'https://qiskit.org/learn', -} --%} diff --git a/docs/conf.py b/docs/conf.py index 1e75b53..e9287a4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,7 +71,6 @@ html_title = f"{project} {release}" htmlhelp_basename = 'qiskit-neko' -# Intersphinx configuration intersphinx_mapping = { - 'qiskit': ('https://qiskit.org/documentation/', None), + 'qiskit': ('https://docs.quantum.ibm.com/api/qiskit/', None), } diff --git a/setup.py b/setup.py index 987075e..2dc079a 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ setup( python_requires=">=3.8", project_urls={ "Bug Tracker": "https://github.com/Qiskit/qiskit-neko/issues", - "Documentation": "https://qiskit.org/documentation/", + "Documentation": "https://qiskit.org/ecosystem/neko", "Source Code": "https://github.com/Qiskit/qiskit-neko", }, zip_safe=False,