From 59d0bdca73515f8c03b47e1bb01dc61b15076ae0 Mon Sep 17 00:00:00 2001 From: "Jonathan J. Helmus" Date: Thu, 25 Jun 2026 10:41:48 -0500 Subject: [PATCH] run build.py in frozen mode Run build.py with the --frozen option to prevent updates to uv.lock. --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 12c3fdb1b..34d009abf 100755 --- a/build.py +++ b/build.py @@ -1,4 +1,4 @@ -#!/usr/bin/env -S uv run --no-dev +#!/usr/bin/env -S uv run --no-dev --frozen # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/.