nutritious-sunset-29053
11/29/2023, 1:27 PMpants export it exports a venv plus all my tools too. Is there a way to choose which tools get exported? Or rather, to not export the tools and only export a venv with all 3rd party dependencies.curved-television-6568
11/29/2023, 3:15 PM--resolve option allows you to specify which resolve(s) you want to export: https://www.pantsbuild.org/docs/reference-export#resolvebitter-ability-32190
11/29/2023, 3:25 PMpants help export can help you find out what's available (pun intended)curved-television-6568
11/29/2023, 3:34 PMpants help-advanced <thing> to get the full picture as some options are “hidden” from the basic listing..happy-kitchen-89482
11/29/2023, 3:56 PMhappy-kitchen-89482
11/29/2023, 3:57 PM--resolve will let you select the lockfiles to export, and tool lockfiles are no longer a special thing but just regular named lockfiles that the tool config points tonutritious-sunset-29053
11/29/2023, 8:41 PM❯ pants export --resolve='python-default' development_libs:frontend
...
raise ExportError("If using the `--resolve` option, do not also provide target specs.")
pants.core.goals.export.ExportError: If using the `--resolve` option, do not also provide target specs.
If I don't specify a target I get this different error
❯ pants export --resolve='python-default'
result = yield self
native_engine.IntrinsicError: Unmatched glob from the resolve `python-default`: "3rdparty/python/default.lock"nutritious-sunset-29053
11/29/2023, 8:42 PM--export-resolve="['<str>', '<str>', ...]", but this gets the same errors.nutritious-sunset-29053
11/29/2023, 8:46 PMcurved-television-6568
11/29/2023, 8:46 PMnutritious-sunset-29053
11/29/2023, 8:50 PMcurved-television-6568
11/29/2023, 8:52 PM--export-resolve option.nutritious-sunset-29053
11/29/2023, 8:54 PMcurved-television-6568
11/29/2023, 8:55 PMnutritious-sunset-29053
11/29/2023, 8:56 PMcurved-television-6568
11/29/2023, 8:56 PMhappy-kitchen-89482
11/29/2023, 10:06 PM