From 3c9bede981163f8c3e6c51c3c4c32ecca0659e05 Mon Sep 17 00:00:00 2001 From: MarcSerraPeralta <43704266+MarcSerraPeralta@users.noreply.github.com> Date: Fri, 3 Oct 2025 23:46:50 +0200 Subject: [PATCH] Remove pytest as strict dependency --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8d59817..43f86d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,6 @@ dependencies = [ "numpy>=1.24.0", "scipy>=1.9.3", "tqdm", - "pytest", "stim", "sinter>=1.12.0", "pymatching" @@ -33,3 +32,6 @@ Documentation = "https://software.roffe.eu/ldpc" [tool.setuptools.packages.find] where = ["src_python"] include = ["ldpc","ldpc.*"] + +[project.optional-dependencies] +dev = ["pytest"]