stata-code 0.6.1__tar.gz → 0.6.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 (53) hide show
  1. {stata_code-0.6.1 → stata_code-0.6.2}/PKG-INFO +3 -3
  2. {stata_code-0.6.1 → stata_code-0.6.2}/README.md +2 -2
  3. {stata_code-0.6.1 → stata_code-0.6.2}/pyproject.toml +1 -1
  4. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/__init__.py +1 -1
  5. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/mcp/server.py +15 -1
  6. {stata_code-0.6.1 → stata_code-0.6.2}/.gitignore +0 -0
  7. {stata_code-0.6.1 → stata_code-0.6.2}/CHANGELOG.md +0 -0
  8. {stata_code-0.6.1 → stata_code-0.6.2}/LICENSE +0 -0
  9. {stata_code-0.6.1 → stata_code-0.6.2}/LICENSE-POLICY.md +0 -0
  10. {stata_code-0.6.1 → stata_code-0.6.2}/PUBLISHING.md +0 -0
  11. {stata_code-0.6.1 → stata_code-0.6.2}/SCHEMA.md +0 -0
  12. {stata_code-0.6.1 → stata_code-0.6.2}/docs/design/hard_timeout.md +0 -0
  13. {stata_code-0.6.1 → stata_code-0.6.2}/examples/01-basic-regression.md +0 -0
  14. {stata_code-0.6.1 → stata_code-0.6.2}/examples/02-did-card-krueger.md +0 -0
  15. {stata_code-0.6.1 → stata_code-0.6.2}/examples/03-graphs.md +0 -0
  16. {stata_code-0.6.1 → stata_code-0.6.2}/examples/04-multi-session.md +0 -0
  17. {stata_code-0.6.1 → stata_code-0.6.2}/examples/05-large-matrix.md +0 -0
  18. {stata_code-0.6.1 → stata_code-0.6.2}/examples/README.md +0 -0
  19. {stata_code-0.6.1 → stata_code-0.6.2}/schema/run_result.schema.json +0 -0
  20. {stata_code-0.6.1 → stata_code-0.6.2}/scripts/export_schema.py +0 -0
  21. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/__init__.py +0 -0
  22. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/_pool.py +0 -0
  23. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/_refs.py +0 -0
  24. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/_runtime.py +0 -0
  25. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/errors.py +0 -0
  26. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/log_artifacts.py +0 -0
  27. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/notebook.py +0 -0
  28. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/run_index.py +0 -0
  29. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/runner.py +0 -0
  30. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/core/schema.py +0 -0
  31. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/kernel/__init__.py +0 -0
  32. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/kernel/__main__.py +0 -0
  33. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/kernel/assets/logo-32x32.png +0 -0
  34. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/kernel/assets/logo-64x64.png +0 -0
  35. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/kernel/assets/logo-svg.svg +0 -0
  36. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/kernel/kernel.py +0 -0
  37. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/mcp/__init__.py +0 -0
  38. {stata_code-0.6.1 → stata_code-0.6.2}/stata_code/mcp/__main__.py +0 -0
  39. {stata_code-0.6.1 → stata_code-0.6.2}/tests/__init__.py +0 -0
  40. {stata_code-0.6.1 → stata_code-0.6.2}/tests/fixtures/.gitkeep +0 -0
  41. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_cancel.py +0 -0
  42. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_errors.py +0 -0
  43. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_kernel.py +0 -0
  44. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_log_artifacts.py +0 -0
  45. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_mcp.py +0 -0
  46. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_notebook.py +0 -0
  47. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_notebook_phase2.py +0 -0
  48. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_pool.py +0 -0
  49. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_run_index.py +0 -0
  50. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_runner.py +0 -0
  51. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_runtime_discovery.py +0 -0
  52. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_schema.py +0 -0
  53. {stata_code-0.6.1 → stata_code-0.6.2}/tests/test_schema_artifact.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stata-code
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Agent-native Stata bridge — one core, multiple frontends (MCP, Jupyter, VSCode)
5
5
  Project-URL: Homepage, https://github.com/brycewang-stanford/stata-code
6
6
  Project-URL: Repository, https://github.com/brycewang-stanford/stata-code
@@ -37,7 +37,7 @@ Requires-Dist: mcp>=1.27; extra == 'mcp'
37
37
  Description-Content-Type: text/markdown
38
38
 
39
39
  <p align="center">
40
- <img src="branding/logo/horizontal@1024.png" alt="stata-code logo" width="520" />
40
+ <img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/logo/horizontal@1024.png" alt="stata-code logo" width="520" />
41
41
  </p>
42
42
 
43
43
  <p align="center">
@@ -59,7 +59,7 @@ Description-Content-Type: text/markdown
59
59
  [![GitHub stars](https://img.shields.io/github/stars/brycewang-stanford/stata-code?style=social)](https://github.com/brycewang-stanford/stata-code)
60
60
 
61
61
  <p align="center">
62
- <img src="branding/github-instructions.png" alt="stata-code: agent-native Stata bridge — one Python core, multiple frontends (Jupyter kernel, MCP server, VS Code extension)" width="720" />
62
+ <img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/github-instructions.png" alt="stata-code: agent-native Stata bridge — one Python core, multiple frontends (Jupyter kernel, MCP server, VS Code extension)" width="720" />
63
63
  </p>
64
64
 
65
65
  > Agent-native Stata bridge — **one Python core, multiple frontends**.
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="branding/logo/horizontal@1024.png" alt="stata-code logo" width="520" />
2
+ <img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/logo/horizontal@1024.png" alt="stata-code logo" width="520" />
3
3
  </p>
4
4
 
5
5
  <p align="center">
@@ -21,7 +21,7 @@
21
21
  [![GitHub stars](https://img.shields.io/github/stars/brycewang-stanford/stata-code?style=social)](https://github.com/brycewang-stanford/stata-code)
22
22
 
23
23
  <p align="center">
24
- <img src="branding/github-instructions.png" alt="stata-code: agent-native Stata bridge — one Python core, multiple frontends (Jupyter kernel, MCP server, VS Code extension)" width="720" />
24
+ <img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/github-instructions.png" alt="stata-code: agent-native Stata bridge — one Python core, multiple frontends (Jupyter kernel, MCP server, VS Code extension)" width="720" />
25
25
  </p>
26
26
 
27
27
  > Agent-native Stata bridge — **one Python core, multiple frontends**.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "stata-code"
7
- version = "0.6.1"
7
+ version = "0.6.2"
8
8
  description = "Agent-native Stata bridge — one core, multiple frontends (MCP, Jupyter, VSCode)"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -58,7 +58,7 @@ from stata_code.core.schema import (
58
58
  # Convenience alias: `run(...)` == `execute(...)`.
59
59
  run = execute
60
60
 
61
- __version__ = "0.6.1"
61
+ __version__ = "0.6.2"
62
62
 
63
63
  __all__ = [
64
64
  # Primary entry points
@@ -62,15 +62,29 @@ from stata_code.core._pool import get_default_pool, pool_execute, pool_stata_inf
62
62
  from stata_code.core._runtime import PystataNotAvailable, is_available
63
63
  from stata_code.core.notebook import (
64
64
  NotebookError,
65
+ )
66
+ from stata_code.core.notebook import (
65
67
  delete_cell as _notebook_delete_cell,
68
+ )
69
+ from stata_code.core.notebook import (
66
70
  edit_cell as _notebook_edit_cell,
71
+ )
72
+ from stata_code.core.notebook import (
67
73
  get_cell as _notebook_get_cell,
74
+ )
75
+ from stata_code.core.notebook import (
68
76
  insert_cell as _notebook_insert_cell,
77
+ )
78
+ from stata_code.core.notebook import (
69
79
  locate_cells as _notebook_locate_cells,
80
+ )
81
+ from stata_code.core.notebook import (
70
82
  outline_notebook as _notebook_outline,
71
83
  )
72
84
  from stata_code.core.run_index import (
73
85
  RunIndexError,
86
+ )
87
+ from stata_code.core.run_index import (
74
88
  list_runs as _list_runs,
75
89
  )
76
90
  from stata_code.core.runner import (
@@ -82,7 +96,7 @@ from stata_code.core.runner import (
82
96
  )
83
97
  from stata_code.core.schema import RunResult
84
98
 
85
- __version__ = "0.6.1"
99
+ __version__ = "0.6.2"
86
100
 
87
101
  SERVER_INSTRUCTIONS = (
88
102
  "Use stata-code for running and inspecting Stata code. Prefer structuredContent "
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes