You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spacy/cli/package.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ def package_cli(
30
30
version: Optional[str] =Opt(None, "--version", "-v", help="Package version to override meta"),
31
31
build: str=Opt("sdist", "--build", "-b", help="Comma-separated formats to build: sdist and/or wheel, or none."),
32
32
force: bool=Opt(False, "--force", "-f", "-F", help="Force overwriting existing data in output directory"),
33
-
no_require_parent: bool=Opt(False, "--require-parent/--no-require-parent", "-R", "-R", help="Don't include the parent package (e.g. spacy) in the requirements"),
33
+
require_parent: bool=Opt(False, "--require-parent/--no-require-parent", "-R", "-R", help="Include the parent package (e.g. spacy) in the requirements"),
0 commit comments