From a010f3fe1e5c53520d57d3283f739a848e5e4c1d Mon Sep 17 00:00:00 2001 From: Katharine Hyatt <67932820+kshyatt-aws@users.noreply.github.com> Date: Thu, 28 Nov 2024 15:58:25 +0100 Subject: [PATCH] change: bump deps and include Forte/deprecate Harmony (#106) * change: bump deps and include Forte/deprecate Harmony * fix: bump PyBraket too --- Project.toml | 14 +++++++------- PyBraket/Project.toml | 4 ++-- src/device.jl | 3 ++- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Project.toml b/Project.toml index 5773fec3..39cfe301 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Braket" uuid = "19504a0f-b47d-4348-9127-acc6cc69ef67" authors = ["Katharine Hyatt "] -version = "0.9.5" +version = "0.9.6" [deps] AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc" @@ -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" @@ -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" diff --git a/PyBraket/Project.toml b/PyBraket/Project.toml index 0aafbf02..8352abe0 100644 --- a/PyBraket/Project.toml +++ b/PyBraket/Project.toml @@ -1,7 +1,7 @@ name = "PyBraket" uuid = "e85266a6-1825-490b-a80e-9b9469c53660" authors = ["Katharine Hyatt "] -version = "0.9.5" +version = "0.9.6" [deps] Braket = "19504a0f-b47d-4348-9127-acc6cc69ef67" @@ -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" diff --git a/src/device.jl b/src/device.jl index 1c23702c..c5728306 100644 --- a/src/device.jl +++ b/src/device.jl @@ -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