Skip to content

Bump cyclopts from 4.8.0 to 4.10.1#32

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/uv/cyclopts-4.10.1
Apr 1, 2026
Merged

Bump cyclopts from 4.8.0 to 4.10.1#32
github-actions[bot] merged 1 commit intomainfrom
dependabot/uv/cyclopts-4.10.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps cyclopts from 4.8.0 to 4.10.1.

Release notes

Sourced from cyclopts's releases.

v4.10.1

Bug Fixes

Full Changelog: BrianPugh/cyclopts@v4.10.0...v4.10.1

v4.10.0

Features

  • New App.error_formatter field to control out CycloptsError are displayed. The formatter receives a CycloptsError and returns any rich-printable object, replacing the default CycloptsPanel. Can be set at app creation or passed as a runtime override to parse_args / __call__ / run_async. by @​BrianPugh in BrianPugh/cyclopts#771

    By default (without error_formatter), errors are displayed in a Rich panel:

    $ my-app foo
    ╭─ Error ─────────────────────────────────────────────────╮
    │ Invalid value "foo" for "VALUE": unable to convert      │
    │ "foo" into int.                                         │
    ╰─────────────────────────────────────────────────────────╯
    

    With a custom formatter, you can simplify or restyle the output:

    from cyclopts import App, CycloptsError
    def my_error_formatter(e: CycloptsError):
    return f"[bold red]error:[/bold red] {e}"
    app = App(error_formatter=my_error_formatter)
    @​app.default
    def main(value: int):
    pass
    app()

    $ my-app foo
    error: Invalid value "foo" for "VALUE": unable to convert "foo" into int.

Full Changelog: BrianPugh/cyclopts@v4.9.0...v4.10.0

v4.9.0

Features

  • Parameter.consume_multiple now accepts int or tuple[int, int] for min/max element bounds.

... (truncated)

Commits
  • e06c49c more robust version parsing function
  • b6dd9d8 allow for custom CycloptsError formatters.
  • ead1504 Merge pull request #769 from tahv/help-prologue
  • 4fe6c24 Add Parameter.allow_repeating
  • 0702473 Fix documentation preview
  • e7fad7b Add App.help_prologue
  • d61d83e Merge pull request #766 from BrianPugh/positional-only-argument-order-error
  • 79ea46c Merge pull request #767 from BrianPugh/contributing
  • ed0e209 fix myst warning
  • 75c09bc contributing guide initial commit
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [cyclopts](https://github.com/BrianPugh/cyclopts) from 4.8.0 to 4.10.1.
- [Release notes](https://github.com/BrianPugh/cyclopts/releases)
- [Commits](BrianPugh/cyclopts@v4.8.0...v4.10.1)

---
updated-dependencies:
- dependency-name: cyclopts
  dependency-version: 4.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 1, 2026

Labels

The following labels could not be found: python, uv. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2026
@dependabot dependabot bot requested a review from woutervh as a code owner April 1, 2026 02:00
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2026
@github-actions github-actions bot merged commit 18405a8 into main Apr 1, 2026
3 of 5 checks passed
@dependabot dependabot bot deleted the dependabot/uv/cyclopts-4.10.1 branch April 1, 2026 02:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants