about summary refs log tree commit diff
path: root/pkgs/development/python-modules/blis
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-05 18:59:59 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-05 18:59:59 +0100
commit3b7123503392778d417feb39a4dd3b4880955b0e (patch)
tree8c9152cfc2607969029e9819e03724e1fa662c81 /pkgs/development/python-modules/blis
parentcdbeb9666cf2842608826f3e72199948a83b3b8c (diff)
python311Packages.blis: fix auto update
Diffstat (limited to 'pkgs/development/python-modules/blis')
-rw-r--r--pkgs/development/python-modules/blis/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/blis/default.nix b/pkgs/development/python-modules/blis/default.nix
index 91e443af460f7..eec563c79a9dc 100644
--- a/pkgs/development/python-modules/blis/default.nix
+++ b/pkgs/development/python-modules/blis/default.nix
@@ -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; {