Skip to content

Commit

Permalink
change: Bump dependency versions (#71)
Browse files Browse the repository at this point in the history
* change: Bump dependency versions

* fix: bump PyBraket too

* fix: CI for windows
  • Loading branch information
kshyatt-aws authored Mar 7, 2024
1 parent 099c000 commit 0cd6f5c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: "Dev PyBraket package on Windows"
if: ${{ matrix.os == 'windows-latest' }}
run: |
julia --project -e 'using Pkg; Pkg.develop(path=joinpath(pwd(), \"PyBraket\"))'
julia --project -e 'using Pkg; Pkg.develop(path=joinpath(pwd(), "PyBraket"))'
# must escape for windows
- name: "Dev PyBraket package on OSX"
if: ${{ matrix.os == 'macOS-latest' }}
Expand Down
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.8.1"
version = "0.8.2"

[deps]
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
Expand Down Expand Up @@ -32,24 +32,24 @@ Tar = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

[compat]
AWS = "=1.90.3"
AWS = "=1.90.4"
AWSS3 = "=0.11.2"
Aqua = "=0.8"
Base64 = "1.6"
AxisArrays = "=0.4.7"
CSV = "=0.10.12"
CSV = "=0.10.13"
CodeTracking = "=1.3.5"
Compat = "=4.10.1"
DataStructures = "=0.18.15"
Compat = "=4.14.0"
DataStructures = "=0.18.18"
Dates = "1.6"
DecFP = "=1.3.2"
Distributions = "=0.25.76"
Distributed = "1.6"
Downloads = "1"
Graphs = "=1.9.0"
HTTP = "=1.10.1"
HTTP = "=1.10.3"
InteractiveUtils = "1.6"
JLD2 = "=0.4.41"
JLD2 = "=0.4.46"
JSON3 = "=1.14.0"
LinearAlgebra = "1.6"
Logging = "1.6"
Expand Down
6 changes: 3 additions & 3 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.1"
version = "0.8.2"

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

[compat]
Aqua = "=0.8"
Braket = "=0.8.1"
Braket = "=0.8.2"
CondaPkg = "=0.2.22"
DataStructures = "=0.18.15"
DataStructures = "=0.18.18"
LinearAlgebra = "1.6"
PythonCall = "=0.9.15"
Statistics = "1"
Expand Down

4 comments on commit 0cd6f5c

@kshyatt-aws
Copy link
Contributor 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/102493

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.8.2 -m "<description of version>" 0cd6f5c478925535935a62d1fd876741df36ef7a
git push origin v0.8.2

@kshyatt-aws
Copy link
Contributor 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/102534

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.8.2 -m "<description of version>" 0cd6f5c478925535935a62d1fd876741df36ef7a
git push origin PyBraket-v0.8.2

Please sign in to comment.