sync lock

This commit is contained in:
Sydney Runkle
2025-05-19 16:39:35 -04:00
parent 238f084efa
commit 2e48c88c23
+20 -20
View File
@@ -1219,7 +1219,7 @@ dev = [
{ name = "langgraph-prebuilt" },
{ name = "langgraph-sdk" },
{ name = "mypy" },
{ name = "psycopg", extra = ["binary"] },
{ name = "psycopg", extra = ["binary"], marker = "python_full_version >= '3.10'" },
{ name = "py-spy" },
{ name = "pycryptodome" },
{ name = "pyperf" },
@@ -1248,29 +1248,29 @@ requires-dist = [
[package.metadata.requires-dev]
dev = [
{ name = "httpx" },
{ name = "jupyter" },
{ name = "httpx", specifier = ">=0.26.0" },
{ name = "jupyter", specifier = ">=1.0.0" },
{ name = "langgraph-checkpoint", editable = "../checkpoint" },
{ name = "langgraph-checkpoint-postgres", editable = "../checkpoint-postgres" },
{ name = "langgraph-checkpoint-sqlite", editable = "../checkpoint-sqlite" },
{ name = "langgraph-cli", extras = ["inmem"] },
{ name = "langgraph-cli", extras = ["inmem"], specifier = ">=0.2.8" },
{ name = "langgraph-prebuilt", editable = "../prebuilt" },
{ name = "langgraph-sdk", editable = "../sdk-py" },
{ name = "mypy" },
{ name = "psycopg", extras = ["binary"] },
{ name = "py-spy" },
{ name = "pycryptodome" },
{ name = "pyperf" },
{ name = "pytest" },
{ name = "pytest-cov" },
{ name = "pytest-dotenv" },
{ name = "pytest-mock" },
{ name = "pytest-repeat" },
{ name = "pytest-watcher" },
{ name = "pytest-xdist", extras = ["psutil"] },
{ name = "ruff" },
{ name = "syrupy" },
{ name = "types-requests" },
{ name = "mypy", specifier = ">=1.6.0" },
{ name = "psycopg", extras = ["binary"], marker = "python_full_version >= '3.10'", specifier = ">=3.0.0" },
{ name = "py-spy", specifier = ">=0.3.14" },
{ name = "pycryptodome", specifier = ">=3.21.0" },
{ name = "pyperf", specifier = ">=2.7.0" },
{ name = "pytest", specifier = ">=8.3.2" },
{ name = "pytest-cov", specifier = ">=4.0.0" },
{ name = "pytest-dotenv", specifier = ">=0.5.2" },
{ name = "pytest-mock", specifier = ">=3.10.0" },
{ name = "pytest-repeat", specifier = ">=0.9.3" },
{ name = "pytest-watcher", specifier = ">=0.4.1" },
{ name = "pytest-xdist", extras = ["psutil"], specifier = ">=3.6.1" },
{ name = "ruff", specifier = ">=0.6.2" },
{ name = "syrupy", specifier = ">=4.0.2" },
{ name = "types-requests", specifier = ">=2.32.0.20240914" },
{ name = "uvloop", specifier = "==0.21.0b1" },
]
@@ -1984,7 +1984,7 @@ wheels = [
[package.optional-dependencies]
binary = [
{ name = "psycopg-binary", marker = "implementation_name != 'pypy'" },
{ name = "psycopg-binary", marker = "python_full_version >= '3.10' and implementation_name != 'pypy'" },
]
[[package]]