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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langgraph-cli
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary:
5
5
  Author: Nuno Campos
6
6
  Author-email: nuno@langchain.dev
@@ -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 = f"ADD {' '.join(local_pkgs.values())} /tmp/" if local_pkgs else ""
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)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "langgraph-cli"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = ""
5
5
  authors = ["Nuno Campos <nuno@langchain.dev>"]
6
6
  readme = "README.md"
File without changes