From 90e00a53a6b56b644a9276646608935430e84c7b Mon Sep 17 00:00:00 2001 From: Jordan Simbananiye Date: Wed, 15 Jul 2026 15:48:51 +0100 Subject: [PATCH 1/2] build(root): constrain dependencies which are leading to resolution of audit failing transient dependency --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 43369719..3f4ec281 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,9 +96,9 @@ dev = [ "validate-pyproject>=0.24.1,<0.26.0", ] release = [ - "tomlkit~=0.14", + "tomlkit<0.16,>=0.13", "pip-licenses>=5.0", - "python-semantic-release~=10.2", + "python-semantic-release>=10.6.1,<11", ] [tool.uv.workspace] From 2d19b61492fca0ca968b984177758e981855e424 Mon Sep 17 00:00:00 2001 From: Jordan Simbananiye Date: Wed, 15 Jul 2026 15:51:37 +0100 Subject: [PATCH 2/2] fix(explorer): Use full distribution path for resolving deltakit-stim in tests via importlib.metadata --- deltakit-explorer/tests/unit/circuits/test_tableau_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltakit-explorer/tests/unit/circuits/test_tableau_functions.py b/deltakit-explorer/tests/unit/circuits/test_tableau_functions.py index 3741c95b..e83392e5 100644 --- a/deltakit-explorer/tests/unit/circuits/test_tableau_functions.py +++ b/deltakit-explorer/tests/unit/circuits/test_tableau_functions.py @@ -102,7 +102,7 @@ ) from deltakit_explorer.qpu._native_gate_set import NativeGateSet -CURRENT_STIM_VERSION = Version(version("stim")) +CURRENT_STIM_VERSION = Version(version("deltakit-stim")) STIM_VERSION_V1_13_0 = Version("1.13.0")