Merge pull request #278974 from wegank/blis-block

python311Packages.blis: fix auto update

authored by Weijia Wang and committed by GitHub 6557c7cb 68fd0224

+5
+5
pkgs/development/python-modules/blis/default.nix
··· 7 , numpy 8 , pytestCheckHook 9 , pythonOlder 10 }: 11 12 buildPythonPackage rec { ··· 57 # Do not update to BLIS 0.9.x until the following issue is resolved: 58 # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935 59 skipBulkUpdate = true; 60 }; 61 62 meta = with lib; {
··· 7 , numpy 8 , pytestCheckHook 9 , pythonOlder 10 + , gitUpdater 11 }: 12 13 buildPythonPackage rec { ··· 58 # Do not update to BLIS 0.9.x until the following issue is resolved: 59 # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935 60 skipBulkUpdate = true; 61 + updateScript = gitUpdater { 62 + rev-prefix = "v"; 63 + ignoredVersions = "0\.9\..*"; 64 + }; 65 }; 66 67 meta = with lib; {