langgraph-cli 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/PKG-INFO +1 -1
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/langgraph_cli/config.py +4 -1
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/pyproject.toml +1 -1
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/README.md +0 -0
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/langgraph_cli/__init__.py +0 -0
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/langgraph_cli/cli.py +0 -0
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/langgraph_cli/docker.py +0 -0
- {langgraph_cli-0.1.2 → langgraph_cli-0.1.3}/langgraph_cli/initdb/init.sql +0 -0
|
@@ -83,7 +83,10 @@ def config_to_compose(config_path: pathlib.Path, config: Config):
|
|
|
83
83
|
f"ADD {relpath} /tmp/{fullpath.name}/{fullpath.name}\n RUN touch /tmp/{fullpath.name}/pyproject.toml"
|
|
84
84
|
for fullpath, relpath in faux_pkgs.items()
|
|
85
85
|
)
|
|
86
|
-
local_pkgs_str =
|
|
86
|
+
local_pkgs_str = "\n".join(
|
|
87
|
+
f"ADD {relpath} /tmp/{fullpath.name}"
|
|
88
|
+
for fullpath, relpath in local_pkgs.items()
|
|
89
|
+
)
|
|
87
90
|
env_vars_str = (
|
|
88
91
|
"\n".join(f" {k}: {v}" for k, v in config["env"].items())
|
|
89
92
|
if isinstance(config["env"], dict)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|