Commit 754bffa5 authored by Robert Schütz's avatar Robert Schütz
Browse files

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)
parent bcc940bc
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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";