From 24bf7bf0a80d50c11308ff3d19913e04c2c62ab2 Mon Sep 17 00:00:00 2001 From: Marquess Valdez Date: Wed, 17 Apr 2024 14:27:10 -0700 Subject: [PATCH] update quil (#462) --- Cargo.toml | 5 +++-- crates/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3bc6b5f4..c994e047 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,10 +12,11 @@ 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` +# be a `quil-py` tag and should be comaptible with the version specified 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.25.0", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.9.0" } +quil-rs = { version = "0.25.1", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.9.1" } # 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 6f9f2de2..2f4bd6f5 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.9.0"] +dependencies = ["quil==0.9.1"] # 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