diff --git a/docs/docs/contributing/how_to/integrations/standard_tests.ipynb b/docs/docs/contributing/how_to/integrations/standard_tests.ipynb index b6657f915c6f3..b5036431036ce 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" ] }, {