From 1df86a4ab959808cd7c51ad8872c86973f809d14 Mon Sep 17 00:00:00 2001 From: Blake Johnson Date: Tue, 2 Jan 2024 09:44:00 -0500 Subject: [PATCH] Update qe-qasm conan build script to point to repo URL in openqasm org. --- conan/qasm/conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conan/qasm/conanfile.py b/conan/qasm/conanfile.py index 944c3cdde..77f531393 100644 --- a/conan/qasm/conanfile.py +++ b/conan/qasm/conanfile.py @@ -21,7 +21,7 @@ class QasmConan(ConanFile): name = "qasm" version = "0.3.0" - url = "https://github.com/Qiskit/qe-qasm.git" + url = "https://github.com/openqasm/qe-qasm.git" settings = "os", "compiler", "build_type", "arch" options = {"shared": [True, False], "examples": [True, False]} default_options = { @@ -39,9 +39,9 @@ class QasmConan(ConanFile): def source(self): token = os.environ.get("GITHUB_PAT") if token is not None: - self.run(f"git clone https://{token}@github.com/Qiskit/qe-qasm.git .") + self.run(f"git clone https://{token}@github.com/openqasm/qe-qasm.git .") else: - self.run(f"git clone git@github.com:Qiskit/qe-qasm.git .") + self.run(f"git clone git@github.com:openqasm/qe-qasm.git .") commit_hash = self.conan_data["sources"]["hash"] self.run(f"git checkout {commit_hash}")