From bd82ada174bfa1aa7777ad3887a38a2cc32807e1 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Thu, 28 May 2026 07:29:56 +0200 Subject: [PATCH] fix(yamtrack): migrate to uv sync --locked Upstream dropped requirements.txt in v0.25.3 and migrated to pyproject.toml/uv.lock. Replace uv venv + uv pip install with uv sync --locked in both install and update scripts. Fixes #14730 --- ct/yamtrack.sh | 3 +-- install/yamtrack-install.sh | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ct/yamtrack.sh b/ct/yamtrack.sh index c11058b9d..d988abb98 100644 --- a/ct/yamtrack.sh +++ b/ct/yamtrack.sh @@ -44,8 +44,7 @@ function update_script() { msg_info "Installing Python Dependencies" cd /opt/yamtrack - $STD uv venv --clear .venv - $STD uv pip install --no-cache-dir -r requirements.txt + $STD uv sync --locked msg_ok "Installed Python Dependencies" msg_info "Restoring Data" diff --git a/install/yamtrack-install.sh b/install/yamtrack-install.sh index 3673b0474..69b1db9e6 100644 --- a/install/yamtrack-install.sh +++ b/install/yamtrack-install.sh @@ -27,8 +27,7 @@ fetch_and_deploy_gh_release "yamtrack" "FuzzyGrim/Yamtrack" "tarball" msg_info "Installing Python Dependencies" cd /opt/yamtrack -$STD uv venv .venv -$STD uv pip install --no-cache-dir -r requirements.txt +$STD uv sync --locked msg_ok "Installed Python Dependencies" msg_info "Configuring Yamtrack"