Skip to content

Commit

Permalink
FEAT: add quarterly and biannually to cron jobs (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Nov 10, 2023
1 parent feea665 commit 83eba98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/repoma/check_dev_files/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _create_argparse() -> ArgumentParser:
)
parser.add_argument(
"--pin-requirements",
choices=["no", "biweekly", "monthly", "bimonthly"],
choices=["no", "biweekly", "monthly", "bimonthly", "quarterly", "biannually"],
default="no",
help=(
"Add a script to pin developer requirements to a constraint file."
Expand Down
2 changes: 2 additions & 0 deletions src/repoma/check_dev_files/update_pip_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
"biweekly": "0 2 * * 1",
"monthly": "0 3 7 */1 *",
"bimonthly": "0 3 7 */2 *",
"quarterly": "0 3 7 */3 *",
"biannually": "0 3 7 */6 *",
}


Expand Down

0 comments on commit 83eba98

Please sign in to comment.