From 0d1aa10042d2d29a3614660fd2f7cba245bf70bc Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Thu, 6 Feb 2025 14:27:41 -0500 Subject: [PATCH] add UV_FROZEN to makefiles --- Makefile | 3 +++ libs/cli/Makefile | 3 +++ libs/partners/anthropic/Makefile | 3 +++ libs/partners/chroma/Makefile | 3 +++ libs/partners/deepseek/Makefile | 3 +++ libs/partners/exa/Makefile | 3 +++ libs/partners/fireworks/Makefile | 3 +++ libs/partners/groq/Makefile | 3 +++ libs/partners/huggingface/Makefile | 3 +++ libs/partners/mistralai/Makefile | 3 +++ libs/partners/nomic/Makefile | 3 +++ libs/partners/ollama/Makefile | 3 +++ libs/partners/openai/Makefile | 3 +++ libs/partners/pinecone/Makefile | 3 +++ libs/partners/prompty/Makefile | 3 +++ libs/partners/qdrant/Makefile | 3 +++ libs/partners/voyageai/Makefile | 3 +++ libs/partners/xai/Makefile | 3 +++ libs/standard-tests/Makefile | 3 +++ 19 files changed, 57 insertions(+) diff --git a/Makefile b/Makefile index 80ced5a98f23f..8a0e992c77805 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ .PHONY: all clean help docs_build docs_clean docs_linkcheck api_docs_build api_docs_clean api_docs_linkcheck spell_check spell_fix lint lint_package lint_tests format format_diff +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + ## help: Show this help info. help: Makefile @printf "\n\033[1mUsage: make ...\033[0m\n\n\033[1mTargets:\033[0m\n\n" diff --git a/libs/cli/Makefile b/libs/cli/Makefile index de1274091feb2..a50ea28e6c8df 100644 --- a/libs/cli/Makefile +++ b/libs/cli/Makefile @@ -3,6 +3,9 @@ # LINTING AND FORMATTING ###################### +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for Python and notebook files. PYTHON_FILES=. MYPY_CACHE=.mypy_cache diff --git a/libs/partners/anthropic/Makefile b/libs/partners/anthropic/Makefile index b69ee4d874f3a..b7b3ca1eb2dfb 100644 --- a/libs/partners/anthropic/Makefile +++ b/libs/partners/anthropic/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE=tests/integration_tests/ diff --git a/libs/partners/chroma/Makefile b/libs/partners/chroma/Makefile index 4e4d098430ec7..acd70b4a2242e 100644 --- a/libs/partners/chroma/Makefile +++ b/libs/partners/chroma/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE = tests/integration_tests/ diff --git a/libs/partners/deepseek/Makefile b/libs/partners/deepseek/Makefile index 8520ddb65d130..c32b67ebad4f5 100644 --- a/libs/partners/deepseek/Makefile +++ b/libs/partners/deepseek/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE = tests/integration_tests/ diff --git a/libs/partners/exa/Makefile b/libs/partners/exa/Makefile index 2cb34678b150c..c467487d3036b 100644 --- a/libs/partners/exa/Makefile +++ b/libs/partners/exa/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/fireworks/Makefile b/libs/partners/fireworks/Makefile index da698ae6447e8..cc8d95e4c5a56 100644 --- a/libs/partners/fireworks/Makefile +++ b/libs/partners/fireworks/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE = tests/integration_tests/ diff --git a/libs/partners/groq/Makefile b/libs/partners/groq/Makefile index 175e213b420d7..b65dffb11039e 100644 --- a/libs/partners/groq/Makefile +++ b/libs/partners/groq/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/huggingface/Makefile b/libs/partners/huggingface/Makefile index 7dd32f2df45a2..d69d408c86c92 100644 --- a/libs/partners/huggingface/Makefile +++ b/libs/partners/huggingface/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/mistralai/Makefile b/libs/partners/mistralai/Makefile index 28448661d4eba..9b84121b82dbf 100644 --- a/libs/partners/mistralai/Makefile +++ b/libs/partners/mistralai/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ INTEGRATION_TEST_FILE ?= tests/integration_tests/ diff --git a/libs/partners/nomic/Makefile b/libs/partners/nomic/Makefile index 12e71e7c6f969..d10dda08795aa 100644 --- a/libs/partners/nomic/Makefile +++ b/libs/partners/nomic/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/ollama/Makefile b/libs/partners/ollama/Makefile index d2a951510d201..5c3c15e5c2e13 100644 --- a/libs/partners/ollama/Makefile +++ b/libs/partners/ollama/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test: TEST_FILE = tests/integration_tests/ diff --git a/libs/partners/openai/Makefile b/libs/partners/openai/Makefile index b9f34f10abdeb..7eca148a4a0f0 100644 --- a/libs/partners/openai/Makefile +++ b/libs/partners/openai/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/pinecone/Makefile b/libs/partners/pinecone/Makefile index d0b30c8730b95..116797ad7ddf5 100644 --- a/libs/partners/pinecone/Makefile +++ b/libs/partners/pinecone/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE = tests/integration_tests/ diff --git a/libs/partners/prompty/Makefile b/libs/partners/prompty/Makefile index a76398590f426..9f9e6f5d7a1fc 100644 --- a/libs/partners/prompty/Makefile +++ b/libs/partners/prompty/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/qdrant/Makefile b/libs/partners/qdrant/Makefile index 09b4215980813..cd53df9d78dcd 100644 --- a/libs/partners/qdrant/Makefile +++ b/libs/partners/qdrant/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/partners/voyageai/Makefile b/libs/partners/voyageai/Makefile index 392c50541f28c..c34c3e547e763 100644 --- a/libs/partners/voyageai/Makefile +++ b/libs/partners/voyageai/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE=tests/integration_tests/ diff --git a/libs/partners/xai/Makefile b/libs/partners/xai/Makefile index a4128ea6b966f..2d3eafc0ae733 100644 --- a/libs/partners/xai/Makefile +++ b/libs/partners/xai/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ diff --git a/libs/standard-tests/Makefile b/libs/standard-tests/Makefile index 39130615937a0..8fa7c0bbaa06c 100644 --- a/libs/standard-tests/Makefile +++ b/libs/standard-tests/Makefile @@ -3,6 +3,9 @@ # Default target executed when no arguments are given to make. all: help +.EXPORT_ALL_VARIABLES: +UV_FROZEN = true + # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ INTEGRATION_TEST_FILE ?= tests/integration_tests/