Skip to content

Commit a010f3f

Browse files
authored
change: bump deps and include Forte/deprecate Harmony (#106)
* change: bump deps and include Forte/deprecate Harmony * fix: bump PyBraket too
1 parent 1716cfc commit a010f3f

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Project.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Braket"
22
uuid = "19504a0f-b47d-4348-9127-acc6cc69ef67"
33
authors = ["Katharine Hyatt <hyatkath@amazon.com>"]
4-
version = "0.9.5"
4+
version = "0.9.6"
55

66
[deps]
77
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
@@ -38,7 +38,7 @@ AWSS3 = "=0.11.2"
3838
Aqua = "=0.8"
3939
AxisArrays = "=0.4.7"
4040
Base64 = "1"
41-
CSV = "=0.10.14"
41+
CSV = "=0.10.15"
4242
CodeTracking = "=1.3.6"
4343
Compat = "=4.16.0"
4444
DataStructures = "=0.18.20"
@@ -48,20 +48,20 @@ Distributed = "1"
4848
Distributions = "=0.25.76"
4949
Downloads = "1"
5050
Graphs = "=1.12.0"
51-
HTTP = "=1.10.8"
51+
HTTP = "=1.10.12"
5252
InteractiveUtils = "1"
53-
JLD2 = "=0.5.5"
54-
JSON3 = "=1.14.0"
53+
JLD2 = "=0.5.10"
54+
JSON3 = "=1.14.1"
5555
LinearAlgebra = "1"
5656
Logging = "1"
5757
Markdown = "=0.7.5"
5858
Mocking = "=0.8.1"
5959
NamedTupleTools = "=0.14.3"
60-
OrderedCollections = "=1.6.3"
60+
OrderedCollections = "=1.7.0"
6161
Pkg = "1"
6262
Random = "1"
6363
SparseArrays = "1"
64-
StaticArrays = "=1.9.7"
64+
StaticArrays = "=1.9.8"
6565
Statistics = "1"
6666
StructTypes = "=1.11.0"
6767
Tar = "1"

PyBraket/Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PyBraket"
22
uuid = "e85266a6-1825-490b-a80e-9b9469c53660"
33
authors = ["Katharine Hyatt <hyatkath@amazon.com>"]
4-
version = "0.9.5"
4+
version = "0.9.6"
55

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

1515
[compat]
1616
Aqua = "=0.8"
17-
Braket = "=0.9.5"
17+
Braket = "=0.9.6"
1818
CondaPkg = "=0.2.23"
1919
DataStructures = "=0.18.20"
2020
LinearAlgebra = "1.6"

src/device.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ end
5353
struct _Borealis <: _XanaduDevice end
5454
Base.convert(::String, d::_Borealis) = "arn:aws:braket:us-east-1::device/qpu/xanadu/Borealis"
5555

56-
for (d, d_arn) in zip((:Harmony, :Aria1, :Aria2),
56+
for (d, d_arn) in zip((:_Harmony, :Aria1, :Aria2, :Forte1),
5757
("arn:aws:braket:us-east-1::device/qpu/ionq/Harmony",
5858
"arn:aws:braket:us-east-1::device/qpu/ionq/Aria-1",
5959
"arn:aws:braket:us-east-1::device/qpu/ionq/Aria-2",
60+
"arn:aws:braket:us-east-1::device/qpu/ionq/Forte-1",
6061
))
6162
@eval begin
6263
struct $d <: IonQDevice end

0 commit comments

Comments
 (0)