Bump invoke to 1.7.* (#8111)

This commit is contained in:
Shantanu
2022-06-20 21:06:53 -07:00
committed by GitHub
parent 05ac6a7215
commit 432fc3ff00
3 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
version = "1.6.*"
version = "1.7.*"

View File

@@ -14,7 +14,7 @@ class Collection:
def add_collection(self, coll, name=..., default=...) -> None: ...
def subcollection_from_path(self, path): ...
def task_with_config(self, name): ...
def to_contexts(self): ...
def to_contexts(self, ignore_unknown_help: bool | None = ...): ...
def subtask_name(self, collection_name, task_name): ...
def transform(self, name): ...
@property

View File

@@ -53,7 +53,7 @@ class Task:
def argspec(self, body): ...
def fill_implicit_positionals(self, positional: Iterable[str] | None) -> Iterable[str]: ...
def arg_opts(self, name: str, default: Any, taken_names: Iterable[str]) -> dict[str, Any]: ...
def get_arguments(self) -> list[Argument]: ...
def get_arguments(self, ignore_unknown_help: bool | None = ...) -> list[Argument]: ...
@overload
def task(__func: Callable[..., Any]) -> Task: ...