Skip to content

Commit

Permalink
ENH: allow pinning constraints in no-python repo (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Nov 10, 2023
1 parent 83eba98 commit e7dc886
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/repoma/check_dev_files/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@ def main(argv: Optional[Sequence[str]] = None) -> int:
executor(black.main, has_notebooks)
if not args.no_github_actions:
executor(release_drafter.main, args.repo_name, args.repo_title)
if args.pin_requirements != "no":
executor(
update_pip_constraints.main,
cron_frequency=args.pin_requirements,
)
executor(mypy.main)
executor(pyright.main)
executor(pytest.main)
executor(pyupgrade.main)
if not args.no_ruff:
executor(ruff.main)
executor(setup_cfg.main, args.ignore_author)
if args.pin_requirements != "no":
executor(
update_pip_constraints.main,
cron_frequency=args.pin_requirements,
)
executor(remove_deprecated_tools, args.keep_issue_templates)
executor(vscode.main, has_notebooks)
executor(gitpod.main, args.no_gitpod)
Expand Down

0 comments on commit e7dc886

Please sign in to comment.