about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-06 17:49:20 +0100
committerGitHub <noreply@github.com>2024-01-06 17:49:20 +0100
commit6557c7cbf4435386402c852d8a67a780597d81e7 (patch)
tree61e6d6a34d1b915eb8aad76ebf0ae072266f1d88
parent68fd02243d13ea9cdc889542b4b7bb828892e115 (diff)
parent3b7123503392778d417feb39a4dd3b4880955b0e (diff)
downloadnixlib-6557c7cbf4435386402c852d8a67a780597d81e7.tar
nixlib-6557c7cbf4435386402c852d8a67a780597d81e7.tar.gz
nixlib-6557c7cbf4435386402c852d8a67a780597d81e7.tar.bz2
nixlib-6557c7cbf4435386402c852d8a67a780597d81e7.tar.lz
nixlib-6557c7cbf4435386402c852d8a67a780597d81e7.tar.xz
nixlib-6557c7cbf4435386402c852d8a67a780597d81e7.tar.zst
nixlib-6557c7cbf4435386402c852d8a67a780597d81e7.zip
Merge pull request #278974 from wegank/blis-block
python311Packages.blis: fix auto update
-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 91e443af460f..eec563c79a9d 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; {