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: poncho/src/poncho_package_create
+4-3
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,13 @@
2
2
fromponchoimportpackage_createascreate
3
3
importargparse
4
4
if__name__=='__main__':
5
-
parser=argparse.ArgumentParser(description='Create a packed environment from a spec.')
6
-
parser.add_argument('spec', help='Read in a spec file, or - for stdin.')
5
+
parser=argparse.ArgumentParser(description='Create a packed environment from a spec or a conda directory.')
6
+
parser.add_argument('spec', help='Read in a spec file, a conda directory, or - for stdin.')
7
7
parser.add_argument('output', help='Write output from conda-pack to the given file.')
8
8
parser.add_argument('--conda-executable', action='store_true', help='Path to conda executable to use. Default are, in this order: mamba, $CONDA_EXE, conda')
9
9
10
10
parser.add_argument('--no-micromamba', action='store_true', help='Do not try no download micromamba if a conda executable is not found.')
11
+
parser.add_argument('--ignore-editable-packages', action='store_true', help='Skip checks for editable packages.')
0 commit comments