From 96a0536ec46a8ce9dd7b6bb0b3e17b7df6d193dd Mon Sep 17 00:00:00 2001 From: khneal Date: Tue, 18 Mar 2025 14:30:06 -0700 Subject: [PATCH] doc: remove Python max version limit from example pyproject.toml (#3843) LangGraph officially supported Python 3.13 back in October 2024: https://changelog.langchain.com/announcements/langgraph-is-now-compatible-with-python-3-13 But why suggest restricting the version of Python at all? The app/agent owner will be in control of the runtime version anyway, so don't add unnecessary restrictions. Note this example from Poetry: https://python-poetry.org/docs/pyproject/#requires-python I did not refactor pyproject.toml to the newer Poetry 2 / uv format, but I can do that in a future PR if it will help... please don't let that block approval+merging this PR. --- docs/docs/cloud/deployment/setup_pyproject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/cloud/deployment/setup_pyproject.md b/docs/docs/cloud/deployment/setup_pyproject.md index 07c8ca30c..9af697611 100644 --- a/docs/docs/cloud/deployment/setup_pyproject.md +++ b/docs/docs/cloud/deployment/setup_pyproject.md @@ -64,7 +64,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = ">=3.9.0,<3.13" +python = ">=3.9" langgraph = "^0.2.0" langchain-fireworks = "^0.1.3"