switchplane 0.3.0__tar.gz → 0.3.1__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 (97) hide show
  1. {switchplane-0.3.0 → switchplane-0.3.1}/PKG-INFO +1 -1
  2. {switchplane-0.3.0 → switchplane-0.3.1}/pyproject.toml +1 -1
  3. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/agent_runtime.py +1 -0
  4. {switchplane-0.3.0 → switchplane-0.3.1}/.github/labeler.yml +0 -0
  5. {switchplane-0.3.0 → switchplane-0.3.1}/.github/release.yml +0 -0
  6. {switchplane-0.3.0 → switchplane-0.3.1}/.github/workflows/ci.yml +0 -0
  7. {switchplane-0.3.0 → switchplane-0.3.1}/.github/workflows/labeler.yml +0 -0
  8. {switchplane-0.3.0 → switchplane-0.3.1}/.github/workflows/publish.yml +0 -0
  9. {switchplane-0.3.0 → switchplane-0.3.1}/.gitignore +0 -0
  10. {switchplane-0.3.0 → switchplane-0.3.1}/CLAUDE.md +0 -0
  11. {switchplane-0.3.0 → switchplane-0.3.1}/CODEOWNERS +0 -0
  12. {switchplane-0.3.0 → switchplane-0.3.1}/CODE_OF_CONDUCT.md +0 -0
  13. {switchplane-0.3.0 → switchplane-0.3.1}/CONTRIBUTING.md +0 -0
  14. {switchplane-0.3.0 → switchplane-0.3.1}/LICENSE +0 -0
  15. {switchplane-0.3.0 → switchplane-0.3.1}/Makefile +0 -0
  16. {switchplane-0.3.0 → switchplane-0.3.1}/README.md +0 -0
  17. {switchplane-0.3.0 → switchplane-0.3.1}/SECURITY.md +0 -0
  18. {switchplane-0.3.0 → switchplane-0.3.1}/TODO.md +0 -0
  19. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/__init__.py +0 -0
  20. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/__init__.py +0 -0
  21. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/__init__.py +0 -0
  22. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/agent.py +0 -0
  23. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/tasks/__init__.py +0 -0
  24. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/tasks/chat.py +0 -0
  25. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/app.py +0 -0
  26. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/config.toml +0 -0
  27. {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/pyproject.toml +0 -0
  28. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/__init__.py +0 -0
  29. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/__init__.py +0 -0
  30. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/__init__.py +0 -0
  31. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/agent.py +0 -0
  32. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/tasks/__init__.py +0 -0
  33. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/tasks/review.py +0 -0
  34. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/app.py +0 -0
  35. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/config.toml +0 -0
  36. {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/pyproject.toml +0 -0
  37. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/__init__.py +0 -0
  38. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/__init__.py +0 -0
  39. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/__init__.py +0 -0
  40. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/agent.py +0 -0
  41. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/tasks/__init__.py +0 -0
  42. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/tasks/hello.py +0 -0
  43. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/app.py +0 -0
  44. {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/pyproject.toml +0 -0
  45. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/pyproject.toml +0 -0
  46. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/__init__.py +0 -0
  47. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/__init__.py +0 -0
  48. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/__init__.py +0 -0
  49. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/agent.py +0 -0
  50. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/tasks/__init__.py +0 -0
  51. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/tasks/watch.py +0 -0
  52. {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/app.py +0 -0
  53. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/__init__.py +0 -0
  54. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/__main__.py +0 -0
  55. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/_util.py +0 -0
  56. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/agent.py +0 -0
  57. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/app.py +0 -0
  58. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/checkpoint.py +0 -0
  59. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/cli.py +0 -0
  60. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/config.py +0 -0
  61. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/control_plane.py +0 -0
  62. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/daemon.py +0 -0
  63. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/discovery.py +0 -0
  64. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/fmt.py +0 -0
  65. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/llm.py +0 -0
  66. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/logging.py +0 -0
  67. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/mcp.py +0 -0
  68. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/oauth.py +0 -0
  69. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/persistence.py +0 -0
  70. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/protocol.py +0 -0
  71. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/scaffold.py +0 -0
  72. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/shell.py +0 -0
  73. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/subprocess_manager.py +0 -0
  74. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/task.py +0 -0
  75. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/transport.py +0 -0
  76. {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/tui.py +0 -0
  77. {switchplane-0.3.0 → switchplane-0.3.1}/tests/__init__.py +0 -0
  78. {switchplane-0.3.0 → switchplane-0.3.1}/tests/conftest.py +0 -0
  79. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_agent.py +0 -0
  80. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_agent_runtime.py +0 -0
  81. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_app.py +0 -0
  82. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_checkpoint.py +0 -0
  83. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_cli.py +0 -0
  84. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_config.py +0 -0
  85. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_control_plane.py +0 -0
  86. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_daemon.py +0 -0
  87. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_discovery.py +0 -0
  88. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_inter_task.py +0 -0
  89. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_llm.py +0 -0
  90. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_mcp.py +0 -0
  91. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_persistence.py +0 -0
  92. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_protocol.py +0 -0
  93. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_shell.py +0 -0
  94. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_subprocess_manager.py +0 -0
  95. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_task.py +0 -0
  96. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_transport.py +0 -0
  97. {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_tui.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: switchplane
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Python runtime control plane for agent-based task execution, LangGraph-native
5
5
  Project-URL: Homepage, https://github.com/salesforce-misc/switchplane
6
6
  Project-URL: Repository, https://github.com/salesforce-misc/switchplane
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "switchplane"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "Python runtime control plane for agent-based task execution, LangGraph-native"
9
9
  readme = "README.md"
10
10
  license = {text = "Apache-2.0"}
@@ -501,6 +501,7 @@ async def _start_checkpointer(ctx: AgentContext) -> None:
501
501
  ctx._db_conn = await aiosqlite.connect(ctx._db_path)
502
502
  ctx._db_conn.row_factory = aiosqlite.Row
503
503
  await ctx._db_conn.execute("PRAGMA journal_mode=WAL")
504
+ await ctx._db_conn.execute("PRAGMA busy_timeout=5000")
504
505
  saver = SqliteCheckpointSaver(ctx._db_conn)
505
506
  await saver.setup()
506
507
  ctx._checkpointer = saver
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes