Skip to content

Commit 24bf7bf

Browse files
authored
update quil (#462)
1 parent 20d2e97 commit 24bf7bf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ thiserror = "1.0.57"
1212
tokio = "1.36.0"
1313
# We specify quil-rs as a git and versioned dependency so that we can keep the version of
1414
# quil-rs used in both the Rust and Python packages in sync. The tag used should always
15-
# be a `quil-py` tag and should match the version used in `crates/python/pyproject.toml`
15+
# be a `quil-py` tag and should be comaptible with the version specified in
16+
# `crates/python/pyproject.toml`.
1617
# The version must also be specified in order to publish to crates.io. Cargo enforces
1718
# that the specified version is the same as the version in the git repository.
18-
quil-rs = { version = "0.25.0", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.9.0" }
19+
quil-rs = { version = "0.25.1", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.9.1" }
1920

2021
# ndarray is used by the `qcs` crate, but it is also used in the `python` crate via a
2122
# re-export through the numpy crate. They should be updated as a pair to keep both

crates/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Operating System :: OS Independent",
2222
]
23-
dependencies = ["quil==0.9.0"]
23+
dependencies = ["quil==0.9.1"]
2424

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

0 commit comments

Comments
 (0)