bamboo-coding 0.2.1__tar.gz → 0.2.2__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 (48) hide show
  1. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/PKG-INFO +3 -3
  2. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/pyproject.toml +3 -3
  3. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding.egg-info/PKG-INFO +3 -3
  4. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding.egg-info/requires.txt +1 -1
  5. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/README.md +0 -0
  6. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/setup.cfg +0 -0
  7. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/__init__.py +0 -0
  8. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/__init__.py +0 -0
  9. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/builtin_skills/__init__.py +0 -0
  10. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/builtin_skills/skill-create/SKILL.md +0 -0
  11. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/builtin_skills/skill-optimize/SKILL.md +0 -0
  12. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/compose.py +0 -0
  13. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/defs.py +0 -0
  14. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/detection.py +0 -0
  15. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/runner.py +0 -0
  16. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/runtime.py +0 -0
  17. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/sessions.py +0 -0
  18. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/skills.py +0 -0
  19. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/skills_install.py +0 -0
  20. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/store.py +0 -0
  21. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/streams.py +0 -0
  22. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/tasks.py +0 -0
  23. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/agents/types.py +0 -0
  24. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/capabilities/__init__.py +0 -0
  25. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/capabilities/repo.py +0 -0
  26. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/__init__.py +0 -0
  27. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/__main__.py +0 -0
  28. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/adapter.py +0 -0
  29. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/pty_session.py +0 -0
  30. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/pty_session_unix.py +0 -0
  31. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/pty_session_win.py +0 -0
  32. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/runtime.py +0 -0
  33. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/session.py +0 -0
  34. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/types.py +0 -0
  35. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/chat/virtual_screen.py +0 -0
  36. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/config.py +0 -0
  37. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/controller_client.py +0 -0
  38. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/git_utils.py +0 -0
  39. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/journal.py +0 -0
  40. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/main.py +0 -0
  41. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/protocol.py +0 -0
  42. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/scrollback_buffer.py +0 -0
  43. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/status.py +0 -0
  44. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding/terminal_runtime.py +0 -0
  45. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding.egg-info/SOURCES.txt +0 -0
  46. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding.egg-info/dependency_links.txt +0 -0
  47. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding.egg-info/entry_points.txt +0 -0
  48. {bamboo_coding-0.2.1 → bamboo_coding-0.2.2}/src/bamboo_coding.egg-info/top_level.txt +0 -0
@@ -1,16 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bamboo-coding
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Bamboo Coding outbound client
5
5
  Classifier: Operating System :: POSIX :: Linux
6
6
  Classifier: Operating System :: Microsoft :: Windows
7
7
  Classifier: Operating System :: MacOS
8
- Requires-Python: >=3.12
8
+ Requires-Python: >=3.11
9
9
  Description-Content-Type: text/markdown
10
10
  Requires-Dist: gitpython==3.1.40
11
11
  Requires-Dist: websockets==13.1
12
12
  Requires-Dist: pydantic>=2.0
13
- Requires-Dist: bamboo-ssh>=0.2.0
13
+ Requires-Dist: bamboo-ssh>=0.2.1
14
14
  Requires-Dist: pyte>=0.8.2
15
15
  Requires-Dist: psutil>=5.9
16
16
  Requires-Dist: pywinpty>=2.0; sys_platform == "win32"
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bamboo-coding"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Bamboo Coding outbound client"
9
9
  readme = "README.md"
10
- requires-python = ">=3.12"
10
+ requires-python = ">=3.11"
11
11
  classifiers = [
12
12
  "Operating System :: POSIX :: Linux",
13
13
  "Operating System :: Microsoft :: Windows",
@@ -17,7 +17,7 @@ dependencies = [
17
17
  "gitpython==3.1.40",
18
18
  "websockets==13.1",
19
19
  "pydantic>=2.0",
20
- "bamboo-ssh>=0.2.0",
20
+ "bamboo-ssh>=0.2.1",
21
21
  "pyte>=0.8.2",
22
22
  "psutil>=5.9",
23
23
  "pywinpty>=2.0; sys_platform == 'win32'",
@@ -1,16 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bamboo-coding
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Bamboo Coding outbound client
5
5
  Classifier: Operating System :: POSIX :: Linux
6
6
  Classifier: Operating System :: Microsoft :: Windows
7
7
  Classifier: Operating System :: MacOS
8
- Requires-Python: >=3.12
8
+ Requires-Python: >=3.11
9
9
  Description-Content-Type: text/markdown
10
10
  Requires-Dist: gitpython==3.1.40
11
11
  Requires-Dist: websockets==13.1
12
12
  Requires-Dist: pydantic>=2.0
13
- Requires-Dist: bamboo-ssh>=0.2.0
13
+ Requires-Dist: bamboo-ssh>=0.2.1
14
14
  Requires-Dist: pyte>=0.8.2
15
15
  Requires-Dist: psutil>=5.9
16
16
  Requires-Dist: pywinpty>=2.0; sys_platform == "win32"
@@ -1,7 +1,7 @@
1
1
  gitpython==3.1.40
2
2
  websockets==13.1
3
3
  pydantic>=2.0
4
- bamboo-ssh>=0.2.0
4
+ bamboo-ssh>=0.2.1
5
5
  pyte>=0.8.2
6
6
  psutil>=5.9
7
7
 
File without changes
File without changes