Skip to content

Commit

Permalink
change: bump deps and include Forte/deprecate Harmony (#106)
Browse files Browse the repository at this point in the history
* change: bump deps and include Forte/deprecate Harmony

* fix: bump PyBraket too
  • Loading branch information
kshyatt-aws authored Nov 28, 2024
1 parent 1716cfc commit a010f3f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Braket"
uuid = "19504a0f-b47d-4348-9127-acc6cc69ef67"
authors = ["Katharine Hyatt <[email protected]>"]
version = "0.9.5"
version = "0.9.6"

[deps]
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
Expand Down Expand Up @@ -38,7 +38,7 @@ AWSS3 = "=0.11.2"
Aqua = "=0.8"
AxisArrays = "=0.4.7"
Base64 = "1"
CSV = "=0.10.14"
CSV = "=0.10.15"
CodeTracking = "=1.3.6"
Compat = "=4.16.0"
DataStructures = "=0.18.20"
Expand All @@ -48,20 +48,20 @@ Distributed = "1"
Distributions = "=0.25.76"
Downloads = "1"
Graphs = "=1.12.0"
HTTP = "=1.10.8"
HTTP = "=1.10.12"
InteractiveUtils = "1"
JLD2 = "=0.5.5"
JSON3 = "=1.14.0"
JLD2 = "=0.5.10"
JSON3 = "=1.14.1"
LinearAlgebra = "1"
Logging = "1"
Markdown = "=0.7.5"
Mocking = "=0.8.1"
NamedTupleTools = "=0.14.3"
OrderedCollections = "=1.6.3"
OrderedCollections = "=1.7.0"
Pkg = "1"
Random = "1"
SparseArrays = "1"
StaticArrays = "=1.9.7"
StaticArrays = "=1.9.8"
Statistics = "1"
StructTypes = "=1.11.0"
Tar = "1"
Expand Down
4 changes: 2 additions & 2 deletions PyBraket/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PyBraket"
uuid = "e85266a6-1825-490b-a80e-9b9469c53660"
authors = ["Katharine Hyatt <[email protected]>"]
version = "0.9.5"
version = "0.9.6"

[deps]
Braket = "19504a0f-b47d-4348-9127-acc6cc69ef67"
Expand All @@ -14,7 +14,7 @@ StructTypes = "856f2bd8-1eba-4b0a-8007-ebc267875bd4"

[compat]
Aqua = "=0.8"
Braket = "=0.9.5"
Braket = "=0.9.6"
CondaPkg = "=0.2.23"
DataStructures = "=0.18.20"
LinearAlgebra = "1.6"
Expand Down
3 changes: 2 additions & 1 deletion src/device.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@ end
struct _Borealis <: _XanaduDevice end
Base.convert(::String, d::_Borealis) = "arn:aws:braket:us-east-1::device/qpu/xanadu/Borealis"

for (d, d_arn) in zip((:Harmony, :Aria1, :Aria2),
for (d, d_arn) in zip((:_Harmony, :Aria1, :Aria2, :Forte1),
("arn:aws:braket:us-east-1::device/qpu/ionq/Harmony",
"arn:aws:braket:us-east-1::device/qpu/ionq/Aria-1",
"arn:aws:braket:us-east-1::device/qpu/ionq/Aria-2",
"arn:aws:braket:us-east-1::device/qpu/ionq/Forte-1",
))
@eval begin
struct $d <: IonQDevice end
Expand Down

0 comments on commit a010f3f

Please sign in to comment.