From 971ad4d2c92cf667377b909eff13133665a89f6e Mon Sep 17 00:00:00 2001 From: Yellowcooln <12516003+yellowcooln@users.noreply.github.com> Date: Sat, 25 Apr 2026 12:29:27 -0400 Subject: [PATCH] Preserve setuptools_scm version on Buildroot installs --- buildroot-manage.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildroot-manage.sh b/buildroot-manage.sh index af4f43a..ca77642 100644 --- a/buildroot-manage.sh +++ b/buildroot-manage.sh @@ -1129,9 +1129,11 @@ install_repeater() { git -C "$SCRIPT_DIR" fetch --tags 2>/dev/null || true git_version=$(python3 -m setuptools_scm 2>/dev/null || echo "1.0.5") export SETUPTOOLS_SCM_PRETEND_VERSION="$git_version" + export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYMC_REPEATER="$git_version" info "Using version: $git_version" else export SETUPTOOLS_SCM_PRETEND_VERSION="1.0.5" + export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYMC_REPEATER="1.0.5" info "Using fallback version: 1.0.5" fi