-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Bump dep versions and fix various bugs (#24)
- Fix errors in cost tracker. - `AwsQuantumTask` now tracks the `AWSConfig` it was run with (inc. region). - Bump dependency versions - Fix `test/runtests.jl` to not develop `PyBraket.jl` until necessary. - Add a CI variable to turn off Aqua tests that break when running in CI. - Restore non-AG integration tests for `Braket.jl`. - Allow optional arguments in schema for device parsing.
- Loading branch information
1 parent
f571cde
commit 9328009
Showing
16 changed files
with
113 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
group: | ||
- Braket-unit | ||
- PyBraket-unit | ||
os: [windows-latest, macOS-latest] | ||
os: [windows-latest, macOS-latest] | ||
arch: ['x64'] | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
@@ -41,10 +41,20 @@ jobs: | |
- run: | | ||
git config --global user.name Tester | ||
git config --global user.email [email protected] | ||
- name: "Dev PyBraket package on Windows" | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
run: | | ||
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' }} | ||
run: | | ||
julia --project -e 'using Pkg; Pkg.develop(path=joinpath(pwd(), "PyBraket"))' | ||
- name: "Run tests" | ||
uses: julia-actions/julia-runtest@v1 | ||
env: | ||
GROUP: ${{ matrix.group }} | ||
BRAKET_CI: true | ||
JULIA_CONDAPKG_VERBOSITY: 2 | ||
version-test: | ||
runs-on: ubuntu-latest | ||
|
@@ -72,10 +82,14 @@ jobs: | |
- run: | | ||
git config --global user.name Tester | ||
git config --global user.email [email protected] | ||
- name: "Dev PyBraket package" | ||
run: | | ||
julia --project -e 'using Pkg; Pkg.develop(path=joinpath(pwd(), "PyBraket"))' | ||
- name: "Run tests" | ||
uses: julia-actions/julia-runtest@v1 | ||
env: | ||
JULIA_CONDAPKG_VERBOSITY: 2 | ||
BRAKET_CI: true | ||
GROUP: ${{ matrix.group }} | ||
- name: "Process coverage" | ||
uses: julia-actions/julia-processcoverage@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ authors = ["Katharine Hyatt <[email protected]>"] | |
version = "0.2.0" | ||
|
||
[deps] | ||
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc" | ||
Braket = "19504a0f-b47d-4348-9127-acc6cc69ef67" | ||
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" | ||
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" | ||
|
@@ -14,18 +13,17 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | |
StructTypes = "856f2bd8-1eba-4b0a-8007-ebc267875bd4" | ||
|
||
[compat] | ||
AWS = "=1.78.0" | ||
Aqua = "0.5" | ||
Braket = "=0.2.0" | ||
CondaPkg = "=0.2.14" | ||
Aqua = "=0.6" | ||
Braket = "0.2.0" | ||
CondaPkg = "=0.2.15" | ||
DataStructures = "=0.18.13" | ||
PythonCall = "=0.9.7" | ||
PythonCall = "=0.9.10" | ||
StructTypes = "=1.10.0" | ||
julia = "1.6" | ||
|
||
[extras] | ||
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc" | ||
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" | ||
Braket = "19504a0f-b47d-4348-9127-acc6cc69ef67" | ||
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.