From 96c67230aa3a7bcd41db6f640ccc50e96b9bb30e Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Wed, 20 Nov 2024 20:00:04 -0800 Subject: [PATCH] docs: standard test version badge (#28247) --- .../contributing/how_to/integrations/standard_tests.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/contributing/how_to/integrations/standard_tests.ipynb b/docs/docs/contributing/how_to/integrations/standard_tests.ipynb index b6657f915c6..b5036431036 100644 --- a/docs/docs/contributing/how_to/integrations/standard_tests.ipynb +++ b/docs/docs/contributing/how_to/integrations/standard_tests.ipynb @@ -13,11 +13,11 @@ "First, let's install 2 dependencies:\n", "\n", "- `langchain-core` will define the interfaces we want to import to define our custom tool.\n", - "- `langchain-tests==0.3.3` will provide the standard tests we want to use.\n", + "- `langchain-tests` will provide the standard tests we want to use. Recommended to pin to the latest version: \n", "\n", ":::note\n", "\n", - "Because added tests in new versions of `langchain-tests` will always break your CI/CD pipelines, we recommend pinning the \n", + "Because added tests in new versions of `langchain-tests` can break your CI/CD pipelines, we recommend pinning the \n", "version of `langchain-tests` to avoid unexpected changes.\n", "\n", ":::" @@ -29,7 +29,7 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install -U langchain-core langchain-tests==0.3.2 pytest pytest-socket" + "%pip install -U langchain-core langchain-tests pytest pytest-socket" ] }, {