Unverified Commit 5848a6bc authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #231175 from LongerHV/cirq-core

python3Packages.cirq-core: Disable on python 3.11
parents 204f2bf5 ce9d0bd4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, pythonAtLeast
, pythonOlder
, fetchFromGitHub
, fetchpatch
@@ -34,7 +35,8 @@ buildPythonPackage rec {
  version = "1.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  # Upstream package is broken on Python 3.11 https://github.com/quantumlib/Cirq/issues/6018
  disabled = pythonOlder "3.7" || pythonAtLeast "3.11";

  src = fetchFromGitHub {
    owner = "quantumlib";