Skip to content

Commit

Permalink
increase python max package rebuilds from 25 to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
zowoq committed Apr 28, 2024
1 parent 2567085 commit 5b65371
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/nixpkgs-maintainer-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Skiplist.hs
Original file line number Diff line number Diff line change
Expand Up @@ -234,4 +234,4 @@ python numPackageRebuilds derivationContents =
(not isPython || numPackageRebuilds <= maxPackageRebuild)
where
isPython = "buildPythonPackage" `T.isInfixOf` derivationContents
maxPackageRebuild = 25
maxPackageRebuild = 100

0 comments on commit 5b65371

Please sign in to comment.