python3Packages.qcs-sdk-python: disable on Python >= 3.13

It fails to build with

    error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12)
This commit is contained in:
Robert Schütz
2026-02-15 10:40:05 -08:00
parent bcc940bc1e
commit 754bffa5be
@@ -7,6 +7,7 @@
opentelemetry-sdk,
pytest-asyncio,
pytestCheckHook,
pythonAtLeast,
qcs-api-client-common,
quil,
rustPlatform,
@@ -18,6 +19,9 @@ buildPythonPackage rec {
version = "0.21.22";
pyproject = true;
# error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12)
disabled = pythonAtLeast "3.13";
src = fetchFromGitHub {
owner = "rigetti";
repo = "qcs-sdk-rust";