Skip to content

Commit

Permalink
remove --config which seemed to cause tests to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
tdyas committed Feb 24, 2025
1 parent a32b104 commit 9894260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pants/init/plugin_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ def run(args):
if reinstall:
shutil.copy(pyproject_path, ".")
run([uv_path, "sync", "--no-config", f"--python={sys.executable}"])
run([uv_path, "sync", f"--python={sys.executable}"])
else:
run([uv_path, "sync", "--no-config", "--frozen", f"--python={sys.executable}"])
run([uv_path, "sync", "--frozen", f"--python={sys.executable}"])
run(["./.venv/bin/python", "-c", "import os, site; print(os.linesep.join(site.getsitepackages()))"])
"""
Expand Down

0 comments on commit 9894260

Please sign in to comment.