Skip to content

Commit 0d65d9e

Browse files
authored
Merge pull request #212 from Qiskit/brj/qss-to-qe-rename
Update qss-qasm reference to qe-qasm in conan.
2 parents c2637fe + 1df86a4 commit 0d65d9e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

conan/qasm/conandata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sources:
2-
hash: "b494a38c409d370ec3611a2d058ec95e0ccf9b4c"
2+
hash: "d59248cbb4cf8840c9720462f2569907b9506323"
33
requirements:
44
- "gmp/6.2.1"
55
- "mpfr/4.1.0"

conan/qasm/conanfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
class QasmConan(ConanFile):
2222
name = "qasm"
23-
version = "0.2.16"
24-
url = "https://github.com/Qiskit/qss-qasm.git"
23+
version = "0.3.0"
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/qss-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/qss-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}")

conandata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ requirements:
66
- pybind11/2.10.1
77
- clang-tools-extra/14.0.6@
88
- llvm/14.0.6-2@
9-
- qasm/0.2.16@qss/stable
9+
- qasm/0.3.0@qss/stable

0 commit comments

Comments
 (0)