comfygit-deploy 0.3.11__tar.gz → 0.3.13__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 (39) hide show
  1. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/.gitignore +6 -0
  2. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/PKG-INFO +2 -2
  3. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/pyproject.toml +2 -2
  4. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/README.md +0 -0
  5. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/__init__.py +0 -0
  6. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/cli.py +0 -0
  7. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/commands/__init__.py +0 -0
  8. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/commands/custom.py +0 -0
  9. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/commands/dev.py +0 -0
  10. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/commands/instances.py +0 -0
  11. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/commands/runpod.py +0 -0
  12. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/commands/worker.py +0 -0
  13. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/config.py +0 -0
  14. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/providers/__init__.py +0 -0
  15. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/providers/custom.py +0 -0
  16. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/providers/runpod.py +0 -0
  17. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/startup/__init__.py +0 -0
  18. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/startup/scripts.py +0 -0
  19. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/worker/__init__.py +0 -0
  20. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/worker/mdns.py +0 -0
  21. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/worker/native_manager.py +0 -0
  22. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/worker/server.py +0 -0
  23. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/comfygit_deploy/worker/state.py +0 -0
  24. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/docs/architecture.md +0 -0
  25. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/__init__.py +0 -0
  26. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/conftest.py +0 -0
  27. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_cli.py +0 -0
  28. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_config.py +0 -0
  29. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_custom_client.py +0 -0
  30. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_logs_streaming.py +0 -0
  31. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_mdns.py +0 -0
  32. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_mdns_scanner.py +0 -0
  33. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_native_manager.py +0 -0
  34. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_runpod_client.py +0 -0
  35. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_startup_script.py +0 -0
  36. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_unified_instances.py +0 -0
  37. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_worker_commands.py +0 -0
  38. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_worker_server.py +0 -0
  39. {comfygit_deploy-0.3.11 → comfygit_deploy-0.3.13}/tests/test_worker_state.py +0 -0
@@ -86,3 +86,9 @@ docs/contexts
86
86
  # Any test environment exports
87
87
  *.tar.gz
88
88
  .claude/context
89
+
90
+ # bv (beads viewer) local config and caches
91
+ .bv/
92
+
93
+ # Beads issue tracking - synced via beads-sync branch only
94
+ .beads/issues.jsonl
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comfygit-deploy
3
- Version: 0.3.11
3
+ Version: 0.3.13
4
4
  Summary: ComfyGit Deploy - Remote deployment and worker management CLI
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: aiohttp>=3.9.0
7
- Requires-Dist: comfygit==0.3.11
7
+ Requires-Dist: comfygit==0.3.13
8
8
  Requires-Dist: zeroconf>=0.131.0
9
9
  Description-Content-Type: text/markdown
10
10
 
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "comfygit-deploy"
3
- version = "0.3.11"
3
+ version = "0.3.13"
4
4
  description = "ComfyGit Deploy - Remote deployment and worker management CLI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
- "comfygit==0.3.11",
8
+ "comfygit==0.3.13",
9
9
  "aiohttp>=3.9.0",
10
10
  "zeroconf>=0.131.0",
11
11
  ]