Skip to content

Commit

Permalink
Fix --require-parent default
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Sep 29, 2024
1 parent dec13b4 commit 114b489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spacy/cli/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def package_cli(
version: Optional[str] = Opt(None, "--version", "-v", help="Package version to override meta"),
build: str = Opt("sdist", "--build", "-b", help="Comma-separated formats to build: sdist and/or wheel, or none."),
force: bool = Opt(False, "--force", "-f", "-F", help="Force overwriting existing data in output directory"),
require_parent: bool = Opt(False, "--require-parent/--no-require-parent", "-R", "-R", help="Include the parent package (e.g. spacy) in the requirements"),
require_parent: bool = Opt(True, "--require-parent/--no-require-parent", "-R", "-R", help="Include the parent package (e.g. spacy) in the requirements"),
# fmt: on
):
"""
Expand Down

0 comments on commit 114b489

Please sign in to comment.