rename to sync_extra_args and set UV_CACHE_DIR

This commit is contained in:
Mads Oestergaard 2024-11-04 10:05:56 +01:00
parent 3d06b410c4
commit 16a6701d2a
2 changed files with 5 additions and 3 deletions

View File

@ -3453,8 +3453,6 @@ class Worker(ServiceCommandSection):
self.uv.initialize(cwd=lockfile_path)
api = self.uv.get_api(lockfile_path)
if api.enabled:
# TODO: what should this be? This controls where uv installs its venv
os.environ["UV_PROJECT_ENVIRONMENT"] = None
print('UV Enabled: Ignoring requested python packages, using repository uv lock file!')
api.install()
return api

View File

@ -73,8 +73,12 @@ class UvConfig:
kwargs["env"]["PATH"] = path
if self.session and self.session.config and args and args[0] == "sync":
# Set the cache dir to venvs dir
if (cache_dir := self.session.config.get("agent.venvs_dir", None)) is not None:
os.environ["UV_CACHE_DIR"] = cache_dir
extra_args = self.session.config.get(
"agent.package_manager.uv_install_extra_args", None
"agent.package_manager.uv_sync_extra_args", None
)
if extra_args:
args = args + tuple(extra_args)