python311Packages.blis: fix auto update

This commit is contained in:
Weijia Wang 2024-01-05 18:59:59 +01:00
parent cdbeb9666c
commit 3b71235033

View file

@ -7,6 +7,7 @@
, numpy
, pytestCheckHook
, pythonOlder
, gitUpdater
}:
buildPythonPackage rec {
@ -57,6 +58,10 @@ buildPythonPackage rec {
# 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;
updateScript = gitUpdater {
rev-prefix = "v";
ignoredVersions = "0\.9\..*";
};
};
meta = with lib; {