Skip to content

Commit

Permalink
change: Restore all integ tests and bump to 0.9.0 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
kshyatt-aws authored May 8, 2024
1 parent 9430d59 commit 14f0c0f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion 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.8.3"
version = "0.9.0"

[deps]
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
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.8.3"
version = "0.9.0"

[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.8.3"
Braket = "=0.9.0"
CondaPkg = "=0.2.22"
DataStructures = "=0.18.20"
LinearAlgebra = "1.6"
Expand Down
20 changes: 10 additions & 10 deletions test/integ_tests/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ using Braket, Test
get_tol(shots::Int) = return (shots > 0 ? Dict("atol"=> 0.1, "rtol"=>0.15) : Dict("atol"=>0.01, "rtol"=>0))
s3_destination_folder = Braket.default_task_bucket()

#include("adjoint_gradient.jl")
#include("create_local_quantum_job.jl")
#include("create_quantum_job.jl")
#include("job_macro.jl")
include("adjoint_gradient.jl")
include("create_local_quantum_job.jl")
include("create_quantum_job.jl")
include("job_macro.jl")
include("measure.jl")
#include("cost_tracking.jl")
#include("device_creation.jl")
#include("queue_information.jl")
#include("density_matrix_simulator.jl")
#include("simulator_quantum_task.jl")
#include("tensor_network_simulator.jl")
include("cost_tracking.jl")
include("device_creation.jl")
include("queue_information.jl")
include("density_matrix_simulator.jl")
include("simulator_quantum_task.jl")
include("tensor_network_simulator.jl")

4 comments on commit 14f0c0f

@kshyatt-aws
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/106429

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.0 -m "<description of version>" 14f0c0fcd90396ca5e62e1cd9e3fc06ebf60d56e
git push origin v0.9.0

@kshyatt-aws
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=PyBraket

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/106432

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a PyBraket-v0.9.0 -m "<description of version>" 14f0c0fcd90396ca5e62e1cd9e3fc06ebf60d56e
git push origin PyBraket-v0.9.0

Please sign in to comment.