hypha-debugger 0.2.2__tar.gz → 0.2.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 (26) hide show
  1. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/PKG-INFO +1 -1
  2. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/__init__.py +1 -1
  3. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/source.py +4 -3
  4. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/PKG-INFO +1 -1
  5. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/pyproject.toml +1 -1
  6. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/README.md +0 -0
  7. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/__main__.py +0 -0
  8. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/cli.py +0 -0
  9. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/debugger.py +0 -0
  10. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/__init__.py +0 -0
  11. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/execute.py +0 -0
  12. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/filesystem.py +0 -0
  13. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/info.py +0 -0
  14. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/inspect_vars.py +0 -0
  15. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/shell.py +0 -0
  16. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/utils/__init__.py +0 -0
  17. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/utils/env.py +0 -0
  18. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/SOURCES.txt +0 -0
  19. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/dependency_links.txt +0 -0
  20. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/entry_points.txt +0 -0
  21. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/requires.txt +0 -0
  22. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/top_level.txt +0 -0
  23. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/setup.cfg +0 -0
  24. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/tests/test_cli.py +0 -0
  25. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/tests/test_services.py +0 -0
  26. {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/tests/test_shell.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypha-debugger
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Injectable debugger for Python processes and AI agents, powered by Hypha RPC
5
5
  Author: Amun AI AB
6
6
  License: MIT
@@ -12,5 +12,5 @@ Usage (sync):
12
12
 
13
13
  from hypha_debugger.debugger import start_debugger, start_debugger_sync, DebugSession
14
14
 
15
- __version__ = "0.2.2"
15
+ __version__ = "0.2.3"
16
16
  __all__ = ["start_debugger", "start_debugger_sync", "DebugSession", "__version__"]
@@ -116,9 +116,10 @@ hyd py 'import sys; sys.version' # run Python via execute_code
116
116
  hyd status # confirm it's connected
117
117
  ```
118
118
 
119
- If the `hyd` command isn't on your PATH after install (e.g. a `--user` install),
120
- either add the install bin dir to PATH or just use `python -m hypha_debugger.cli`
121
- in place of `hyd` identical arguments (`python -m hypha_debugger.cli sh 'pwd'`).
119
+ Install tip: `pipx install hypha-debugger` is the most reliable it always puts
120
+ `hyd` on your PATH. If instead you used `pip install --user` and `hyd` isn't found,
121
+ either add the user bin dir to PATH, or just use `python -m hypha_debugger.cli` in
122
+ place of `hyd` — identical arguments (`python -m hypha_debugger.cli sh 'pwd'`).
122
123
 
123
124
  Key ideas:
124
125
  - **The remote is stateless.** The "current directory" and "current profile" live
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypha-debugger
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Injectable debugger for Python processes and AI agents, powered by Hypha RPC
5
5
  Author: Amun AI AB
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hypha-debugger"
7
- version = "0.2.2"
7
+ version = "0.2.3"
8
8
  description = "Injectable debugger for Python processes and AI agents, powered by Hypha RPC"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes