From 8b8223b5f5910e4755b4a8d00e08a7df991c709e Mon Sep 17 00:00:00 2001 From: Marquess Valdez Date: Wed, 17 Jan 2024 14:15:28 -0800 Subject: [PATCH] feat: Update quil-rs/quil-py to 0.23.5/0.6.5 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/python/pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6174575d..c36944a40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2213,8 +2213,8 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" [[package]] name = "quil-rs" -version = "0.22.4" -source = "git+https://github.com/rigetti/quil-rs?tag=quil-py/v0.6.4#f7c0ac9affd37f797d4b6434be8cc53143984f8c" +version = "0.22.5" +source = "git+https://github.com/rigetti/quil-rs?tag=quil-py/v0.6.5#bfee2c882b402c7b14b921af2ca346b639378f4b" dependencies = [ "approx", "indexmap 1.9.3", diff --git a/Cargo.toml b/Cargo.toml index fcca7ffad..483ef1a62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ tokio = "1.34.0" # 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.4", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.6.4" } +quil-rs = { version = "0.22.5", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.6.5" } # 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 diff --git a/crates/python/pyproject.toml b/crates/python/pyproject.toml index b7ac701f9..83f635cd9 100644 --- a/crates/python/pyproject.toml +++ b/crates/python/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ] -dependencies = ["quil==0.6.4"] +dependencies = ["quil==0.6.5"] # 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