Cyclopts

Latest version: v3.11.2

Safety actively analyzes 723799 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 8 of 12

2.6.2

Features
* New `App.help_format="rich"` option.

Bug Fixes
* Consistent help formatting (that respects `help_format`) across the different sections of the generated help-page. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/166
* `help_format` is now keyword only. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/164
* Improve type inference when using decorators with pyright by breathe in https://github.com/BrianPugh/cyclopts/pull/172

New Contributors
* breathe made their first contribution in https://github.com/BrianPugh/cyclopts/pull/172

**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v2.6.1...v2.6.2

2.6.1

Significantly improve `cyclopts` import speed by lazy loading dependencies.

What's Changed
* defer `asyncio` and `importlib` import by OrHayat in https://github.com/BrianPugh/cyclopts/pull/154
* defer optional `pydantic` import, speeding up initial import by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/155
* defer `rich` import. Also defer difflib by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/156


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v2.6.0...v2.6.1

2.6.0

Features
* Add `App.name_transform` by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/147
* Add `Parameter.name_transform` by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/149

This release adds two new fields: `App.name_transform` and `Parameter.name_transform`. The function's responsibility is to convert python identifiers to their CLI counterparts and has signature:


def name_transform(s: str) -> str:
...


These name transforms can be set at a global level for your app:


app = App(
name_transform=lambda name: name, don't modify the name at all. This applies to command names.
default_parameter=Parameter(name_transform=lambda name: name), This applies to parameter names.
)


They can also be set in individual subapps (subapps inherit `name_transform` from their parent), or in individual `Annotated[...., Parameter(name_transform=my_custom_transform)]` definitions.

**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v2.5.1...v2.6.0

2.5.1

Bug Fixes
* Fix displaying default if `required=True` and no default is present. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/146


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v2.5.0...v2.5.1

2.5.0

What's Changed
* Added support for Postponed Evaluation of types annotations (PEP-563) by OrHayat in https://github.com/BrianPugh/cyclopts/pull/138
* Move special-flag parsing logic from parse_args into parse_known_args by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/130

**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v2.4.2...v2.5.0

2.4.2

Bug Fixes
* Unfreeze help_flags and version_flags; create/delete commands on set/get by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/127. Addresses #126


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v2.4.1...v2.4.2

Page 8 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.