diff --git a/doc/nixpkgs-maintainer-faq.md b/doc/nixpkgs-maintainer-faq.md index c2c3c92..4f0ccf3 100644 --- a/doc/nixpkgs-maintainer-faq.md +++ b/doc/nixpkgs-maintainer-faq.md @@ -36,7 +36,7 @@ Updates can be disabled by adding a comment to the package: We maintain a [Skiplist](https://github.com/ryantm/nixpkgs-update/blob/main/src/Skiplist.hs) of different things not to update. It is possible your package is triggering one of the skip criteria. -Python updates are skipped if they cause more than 25 rebuilds. +Python updates are skipped if they cause more than 100 rebuilds. ### Existing Open or Draft PR diff --git a/src/Skiplist.hs b/src/Skiplist.hs index bdba1cc..78fc1b6 100644 --- a/src/Skiplist.hs +++ b/src/Skiplist.hs @@ -234,4 +234,4 @@ python numPackageRebuilds derivationContents = (not isPython || numPackageRebuilds <= maxPackageRebuild) where isPython = "buildPythonPackage" `T.isInfixOf` derivationContents - maxPackageRebuild = 25 + maxPackageRebuild = 100