Skip to content

Commit 1df86a4

Browse files
committed
Update qe-qasm conan build script to point to repo URL in openqasm org.
1 parent 16dea56 commit 1df86a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conan/qasm/conanfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class QasmConan(ConanFile):
2222
name = "qasm"
2323
version = "0.3.0"
24-
url = "https://github.com/Qiskit/qe-qasm.git"
24+
url = "https://github.com/openqasm/qe-qasm.git"
2525
settings = "os", "compiler", "build_type", "arch"
2626
options = {"shared": [True, False], "examples": [True, False]}
2727
default_options = {
@@ -39,9 +39,9 @@ class QasmConan(ConanFile):
3939
def source(self):
4040
token = os.environ.get("GITHUB_PAT")
4141
if token is not None:
42-
self.run(f"git clone https://{token}@github.com/Qiskit/qe-qasm.git .")
42+
self.run(f"git clone https://{token}@github.com/openqasm/qe-qasm.git .")
4343
else:
44-
self.run(f"git clone [email protected]:Qiskit/qe-qasm.git .")
44+
self.run(f"git clone [email protected]:openqasm/qe-qasm.git .")
4545

4646
commit_hash = self.conan_data["sources"]["hash"]
4747
self.run(f"git checkout {commit_hash}")

0 commit comments

Comments
 (0)