Unverified Commit 35a3f6ef authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #223722 from benxiao/revert-blis

python3Packages.blis: 0.9.1 -> 0.7.9
parents b7405ea8 1ef879bc
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -10,16 +10,14 @@

buildPythonPackage rec {
  pname = "blis";
  # Do not update to BLIS 0.9.x until the following issue is resolved:
  # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935
  version = "0.9.1";
  version = "0.7.9";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-fOrEZoAfnZfss04Q3e2MJM9eCSfqfoNNocydLtP8Nm8=";
    hash = "sha256-Ke9MJQB3hakP/C8Ks9O9O3XNLXhWqaSCt9DayNURoJ0=";
  };

  postPatch = ''
@@ -45,6 +43,12 @@ buildPythonPackage rec {
    "blis"
  ];

  passthru = {
    # Do not update to BLIS 0.9.x until the following issue is resolved:
    # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935
    skipBulkUpdate = true;
  };

  meta = with lib; {
    description = "BLAS-like linear algebra library";
    homepage = "https://github.com/explosion/cython-blis";