Skip to content

Commit

Permalink
Merge pull request #212 from Qiskit/brj/qss-to-qe-rename
Browse files Browse the repository at this point in the history
Update qss-qasm reference to qe-qasm in conan.
  • Loading branch information
blakejohnson authored Jan 2, 2024
2 parents c2637fe + 1df86a4 commit 0d65d9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conan/qasm/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sources:
hash: "b494a38c409d370ec3611a2d058ec95e0ccf9b4c"
hash: "d59248cbb4cf8840c9720462f2569907b9506323"
requirements:
- "gmp/6.2.1"
- "mpfr/4.1.0"
Expand Down
8 changes: 4 additions & 4 deletions conan/qasm/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

class QasmConan(ConanFile):
name = "qasm"
version = "0.2.16"
url = "https://github.com/Qiskit/qss-qasm.git"
version = "0.3.0"
url = "https://github.com/openqasm/qe-qasm.git"
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "examples": [True, False]}
default_options = {
Expand All @@ -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/qss-qasm.git .")
self.run(f"git clone https://{token}@github.com/openqasm/qe-qasm.git .")
else:
self.run(f"git clone [email protected]:Qiskit/qss-qasm.git .")
self.run(f"git clone [email protected]:openqasm/qe-qasm.git .")

commit_hash = self.conan_data["sources"]["hash"]
self.run(f"git checkout {commit_hash}")
Expand Down
2 changes: 1 addition & 1 deletion conandata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ requirements:
- pybind11/2.10.1
- clang-tools-extra/14.0.6@
- llvm/14.0.6-2@
- qasm/0.2.16@qss/stable
- qasm/0.3.0@qss/stable

0 comments on commit 0d65d9e

Please sign in to comment.