File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,11 @@ thiserror = "1.0.57"
12
12
tokio = " 1.36.0"
13
13
# We specify quil-rs as a git and versioned dependency so that we can keep the version of
14
14
# 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`.
16
17
# The version must also be specified in order to publish to crates.io. Cargo enforces
17
18
# 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 " }
19
20
20
21
# ndarray is used by the `qcs` crate, but it is also used in the `python` crate via a
21
22
# re-export through the numpy crate. They should be updated as a pair to keep both
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ classifiers = [
20
20
" Programming Language :: Python :: 3.11" ,
21
21
" Operating System :: OS Independent" ,
22
22
]
23
- dependencies = [" quil==0.9.0 " ]
23
+ dependencies = [" quil==0.9.1 " ]
24
24
25
25
# PEP 621 specifies the [project] table as the source for project metadata. However, Poetry only supports [tool.poetry]
26
26
# We can remove this table once this issue is resolved: https://github.com/python-poetry/poetry/issues/3332
You can’t perform that action at this time.
0 commit comments