From b8b621558c5685b3203a8cc84d3ab71431002d16 Mon Sep 17 00:00:00 2001 From: Mark Elliot <123787712+mark-thm@users.noreply.github.com> Date: Mon, 22 Apr 2024 13:37:13 -0400 Subject: [PATCH] Add '--no-strip-extras' to uv pip calls --- uv/private/pip_compile.sh | 1 + uv/private/pip_compile_test.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/uv/private/pip_compile.sh b/uv/private/pip_compile.sh index 609e632..cb0c32f 100644 --- a/uv/private/pip_compile.sh +++ b/uv/private/pip_compile.sh @@ -18,6 +18,7 @@ PYTHON_VERSION="$(python3 -c 'import sys; print(f"{sys.version_info.major}.{sys. $UV pip compile \ --generate-hashes \ --no-header \ + --no-strip-extras \ --python-version=$PYTHON_VERSION \ -o $REQUIREMENTS_TXT \ $REQUIREMENTS_IN \ diff --git a/uv/private/pip_compile_test.sh b/uv/private/pip_compile_test.sh index fc4574e..70a9cc7 100644 --- a/uv/private/pip_compile_test.sh +++ b/uv/private/pip_compile_test.sh @@ -19,6 +19,7 @@ $UV pip compile \ --no-cache \ --generate-hashes \ --no-header \ + --no-strip-extras \ --python-version=$PYTHON_VERSION \ -c $REQUIREMENTS_TXT \ $REQUIREMENTS_IN