baserun-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.
Files changed (22) hide show
  1. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/PKG-INFO +1 -1
  2. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/channel.py +6 -2
  3. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/PKG-INFO +1 -1
  4. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/pyproject.toml +1 -1
  5. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/README.md +0 -0
  6. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/__init__.py +0 -0
  7. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/__init__.py +0 -0
  8. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/base.py +0 -0
  9. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/cli.py +0 -0
  10. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/__init__.py +0 -0
  11. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/base.py +0 -0
  12. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/bash_agent.py +0 -0
  13. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/claude.py +0 -0
  14. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/codex.py +0 -0
  15. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/main.py +0 -0
  16. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/runner.py +0 -0
  17. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/SOURCES.txt +0 -0
  18. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/dependency_links.txt +0 -0
  19. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/entry_points.txt +0 -0
  20. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/requires.txt +0 -0
  21. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/top_level.txt +0 -0
  22. {baserun_cli-0.1.2 → baserun_cli-0.1.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: baserun-cli
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: BaseRun agent-side daemon (connects to nchan, spawns CLI agents, publishes run events)
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -253,9 +253,13 @@ class ChannelClient:
253
253
  )
254
254
 
255
255
  for ev in missing_events:
256
- ok = await self.publish_event(run_id, ev)
256
+ data = ev.get("data", {})
257
+ if data.get("finished") is True:
258
+ ok = await self.publish_event_reliably(run_id, ev)
259
+ else:
260
+ ok = await self.publish_event(run_id, ev)
257
261
  if not ok:
258
- log.error("verify: replay still failed for run %s seq=%s", run_id, ev["data"]["seq"])
262
+ log.error("verify: replay still failed for run %s seq=%s", run_id, data.get("seq"))
259
263
 
260
264
  async def run(self) -> None:
261
265
  """Main loop: WS subscriber + HTTP claim-task poller, running in parallel.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: baserun-cli
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: BaseRun agent-side daemon (connects to nchan, spawns CLI agents, publishes run events)
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "baserun-cli"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "BaseRun agent-side daemon (connects to nchan, spawns CLI agents, publishes run events)"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
File without changes
File without changes