Skip to content

Commit 114b489

Browse files
committed
Fix --require-parent default
1 parent dec13b4 commit 114b489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spacy/cli/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def package_cli(
3030
version: Optional[str] = Opt(None, "--version", "-v", help="Package version to override meta"),
3131
build: str = Opt("sdist", "--build", "-b", help="Comma-separated formats to build: sdist and/or wheel, or none."),
3232
force: bool = Opt(False, "--force", "-f", "-F", help="Force overwriting existing data in output directory"),
33-
require_parent: bool = Opt(False, "--require-parent/--no-require-parent", "-R", "-R", help="Include the parent package (e.g. spacy) in the requirements"),
33+
require_parent: bool = Opt(True, "--require-parent/--no-require-parent", "-R", "-R", help="Include the parent package (e.g. spacy) in the requirements"),
3434
# fmt: on
3535
):
3636
"""

0 commit comments

Comments
 (0)