Cyclopts

Latest version: v3.11.2

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

Scan your dependencies

Page 4 of 12

3.3.0

Features
* `cyclopts.edit()` to launch text editor for user input. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/303

Bug Fixes
* improved pytest warning variable-name detection. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/301


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.2.1...v3.3.0

3.2.1

Features
* Warn if cyclopts application is invoked with no python arguments within pytest. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/300


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.2.0...v3.2.1

3.2.0

Features
* Allow Parameter to be used as a decorator. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/295
python
from cyclopts import App, Parameter
from dataclasses import dataclass

app = App(name="movie-maintainer")

Parameter(name="*")
dataclass
class Movie:
title: str
year: int

app.command
def add(movie: Movie):
print(f"Adding movie: {movie}")

app()

See [docs example](https://cyclopts.readthedocs.io/en/latest/user_classes.html#namespace-flattening) for more information.

Internal
* To allow the `Parameter` decorator, we Introduce a hidden `__cyclopts__` attribute that gets attached to decorated objects. Currently only created/used when `Parameter` is used.


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.1.5...v3.2.0

3.1.5

What's Changed
* Better handling of nested meta apps by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/291
* Fix converters/validators getting the wrong type for nested Annotated[Parameter(...)] by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/293


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.1.4...v3.1.5

3.1.4

Features
* Add `App.update` method. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/281

Bug Fixes
* Fix subapp default command/parameter/argument groups. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/283
* fix handling for when `Annotated` is inside another type; namely `list[Annotated[...]]`. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/289


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.1.3...v3.1.4

3.1.3

Bug Fixes
* Do not interpret choices/default as rich markup by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/278
* Various speed optimizations. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/279


**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.1.2...v3.1.3

Page 4 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.