Skip to content

Commit

Permalink
fix: Update quil-rs, fixing a regression in DELAY parsing (#450)
Browse files Browse the repository at this point in the history
* bump quil-rs

* update thiserror
  • Loading branch information
MarquessV authored Mar 8, 2024
1 parent f174e87 commit 6e91667
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 38 deletions.
79 changes: 44 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ qcs-api-client-common = "0.7.10"
qcs-api-client-grpc = "0.7.13"
qcs-api-client-openapi = "0.8.11"
serde_json = "1.0.86"
thiserror = "1.0.37"
thiserror = "1.0.57"
tokio = "1.36.0"
# We specify quil-rs as a git and versioned dependency so that we can keep the version of
# quil-rs used in both the Rust and Python packages in sync. The tag used should always
# be a `quil-py` tag and should match the version used in `crates/python/pyproject.toml`
# The version must also be specified in order to publish to crates.io. Cargo enforces
# that the specified version is the same as the version in the git repository.
quil-rs = { version = "0.22.6", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.6.6" }
quil-rs = { version = "0.23.0", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.7.0" }

# ndarray is used by the `qcs` crate, but it is also used in the `python` crate via a
# re-export through the numpy crate. They should be updated as a pair to keep both
Expand Down
2 changes: 1 addition & 1 deletion crates/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = ["quil==0.6.6"]
dependencies = ["quil==0.7.0"]

# PEP 621 specifies the [project] table as the source for project metadata. However, Poetry only supports [tool.poetry]
# We can remove this table once this issue is resolved: https://github.com/python-poetry/poetry/issues/3332
Expand Down

0 comments on commit 6e91667

Please sign in to comment.