Skip to content

Commit

Permalink
reformat, bump
Browse files Browse the repository at this point in the history
  • Loading branch information
sjdilkes committed Oct 29, 2024
1 parent 37724c6 commit 3b7a334
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pytket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def requirements(self):
self.requires("pybind11_json/0.2.14")
self.requires("symengine/0.12.0")
self.requires("tkassert/0.3.4@tket/stable")
self.requires("tket/1.3.36@tket/stable")
self.requires("tket/1.3.37@tket/stable")
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("tktokenswap/0.3.9@tket/stable")
Expand Down
5 changes: 2 additions & 3 deletions pytket/tests/lightsabre_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
from pytket.architecture import Architecture

if __name__ == "__main__":
a = Architecture([(0,1),(1,2)])
c = Circuit(3).CX(0,2).CX(0,1)
a = Architecture([(0, 1), (1, 2)])
c = Circuit(3).CX(0, 2).CX(0, 1)
d = LightSABRE(a, 45, 2).to_dict()
print(d)
bp = BasePass.from_dict(d)

bp.apply(c)
for x in c:
print(x)

2 changes: 1 addition & 1 deletion tket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class TketConan(ConanFile):
name = "tket"
version = "1.3.36"
version = "1.3.37"
package_type = "library"
license = "Apache 2"
homepage = "https://github.com/CQCL/tket"
Expand Down

0 comments on commit 3b7a334

Please sign in to comment.