<#18749 Exporting Python tools with `::` and `--re...
# github-notifications
c
#18749 Exporting Python tools with `::` and `--resolve` creates venvs in different paths Issue created by achimnol Describe the bug
./pants export ::
is the to-be-deprecated way to export venvs from all resolves including tools.
./pants export --resolve=black --resolve=isort ...
is the new recommended explicit way to do the same thing. I'd expect both way should create venvs in the same location but they differ: •
./pants export ::
->
dist/export/python/virtualenvs/tools/black
./pants export --resolve=black
->
dist/export/python/virtualenvs/black/3.11.3
Pants version 2.16.0.dev7 OS macOS 13.3.1 pantsbuild/pants