agr-opentui 0.3.1__tar.gz → 0.3.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 (111) hide show
  1. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/renovate.json5 +6 -0
  2. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/workflows/build-bin.yml +1 -1
  3. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/workflows/bump-version.yml +1 -1
  4. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/workflows/publish-pypi.yml +10 -2
  5. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/Makefile +6 -1
  6. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/PKG-INFO +26 -6
  7. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/README.md +23 -3
  8. agr_opentui-0.3.3/agr_opentui/bin/agr-opentui +0 -0
  9. agr_opentui-0.3.3/agr_opentui/cli.py +28 -0
  10. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/pyproject.toml +11 -3
  11. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/uv.lock +16 -2
  12. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/CODEOWNERS +0 -0
  13. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  14. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  15. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.github/workflows/ci.yml +0 -0
  16. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/.gitignore +0 -0
  17. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/agr_opentui/__init__.py +0 -0
  18. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/agr_opentui/bridge.py +0 -0
  19. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/bun.lock +0 -0
  20. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/bunfig.toml +0 -0
  21. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/package.json +0 -0
  22. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/skills.json +0 -0
  23. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/app.ts +0 -0
  24. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/app_logic.ts +0 -0
  25. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/commands.ts +0 -0
  26. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/deps.ts +0 -0
  27. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/main.ts +0 -0
  28. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/runtime/doctor.ts +0 -0
  29. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/runtime/handlers.ts +0 -0
  30. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/runtime/modal_input_handler.ts +0 -0
  31. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/add_flow.ts +0 -0
  32. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/agr.ts +0 -0
  33. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/agr_actions.ts +0 -0
  34. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/clipboard.ts +0 -0
  35. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/data.ts +0 -0
  36. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/discover_filter.ts +0 -0
  37. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/discover_labels.ts +0 -0
  38. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/feedback.ts +0 -0
  39. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/handle_match.ts +0 -0
  40. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/input_mode.ts +0 -0
  41. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/navigation.ts +0 -0
  42. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/preview.ts +0 -0
  43. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_actions.ts +0 -0
  44. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_all.ts +0 -0
  45. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_details.ts +0 -0
  46. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_footer.ts +0 -0
  47. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_help.ts +0 -0
  48. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_list.ts +0 -0
  49. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_missing_config.ts +0 -0
  50. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_preview.ts +0 -0
  51. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_run_modal.ts +0 -0
  52. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_run_options.ts +0 -0
  53. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_tabs.ts +0 -0
  54. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_update_confirm.ts +0 -0
  55. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/render_verify.ts +0 -0
  56. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/runtime_ops.ts +0 -0
  57. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/selection.ts +0 -0
  58. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/skills_file.ts +0 -0
  59. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/skills_source.ts +0 -0
  60. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/ui_feedback.ts +0 -0
  61. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/update.ts +0 -0
  62. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/verify.ts +0 -0
  63. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/verify_coordinator.ts +0 -0
  64. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/services/visible_items.ts +0 -0
  65. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/state.ts +0 -0
  66. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/ui/controller.ts +0 -0
  67. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/ui/layout.ts +0 -0
  68. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/ui/render.ts +0 -0
  69. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/ui/rows_render.ts +0 -0
  70. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/src/ui.ts +0 -0
  71. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/add_flow_service.test.ts +0 -0
  72. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/agr_actions.test.ts +0 -0
  73. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/agr_service.test.ts +0 -0
  74. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/app_logic.test.ts +0 -0
  75. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/clipboard_service.test.ts +0 -0
  76. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/commands_service.test.ts +0 -0
  77. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/data_service.test.ts +0 -0
  78. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/discover_filter_service.test.ts +0 -0
  79. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/discover_labels.test.ts +0 -0
  80. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/feedback_service.test.ts +0 -0
  81. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/handle_match_service.test.ts +0 -0
  82. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/input_mode_service.test.ts +0 -0
  83. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/navigation_service.test.ts +0 -0
  84. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/preview_service.test.ts +0 -0
  85. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_actions_service.test.ts +0 -0
  86. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_all_service.test.ts +0 -0
  87. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_details_service.test.ts +0 -0
  88. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_footer_service.test.ts +0 -0
  89. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_help_service.test.ts +0 -0
  90. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_list_service.test.ts +0 -0
  91. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_missing_config_service.test.ts +0 -0
  92. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_preview_service.test.ts +0 -0
  93. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_run_modal_service.test.ts +0 -0
  94. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_run_options_service.test.ts +0 -0
  95. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_tabs_service.test.ts +0 -0
  96. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_update_confirm_service.test.ts +0 -0
  97. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/render_verify_service.test.ts +0 -0
  98. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/rows_render.test.ts +0 -0
  99. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/runtime_doctor.test.ts +0 -0
  100. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/runtime_handlers.test.ts +0 -0
  101. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/runtime_ops_service.test.ts +0 -0
  102. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/selection_service.test.ts +0 -0
  103. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/skills_file_service.test.ts +0 -0
  104. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/skills_source.test.ts +0 -0
  105. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/ui_controller.test.ts +0 -0
  106. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/ui_feedback_adapter.test.ts +0 -0
  107. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/update_service.test.ts +0 -0
  108. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/verify_coordinator_service.test.ts +0 -0
  109. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/verify_service.test.ts +0 -0
  110. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/test/visible_items_service.test.ts +0 -0
  111. {agr_opentui-0.3.1 → agr_opentui-0.3.3}/tsconfig.json +0 -0
@@ -9,7 +9,13 @@
9
9
  schedule: ["before 6am on monday"],
10
10
  labels: ["dependencies"],
11
11
  rangeStrategy: "bump",
12
+ ignoreDeps: ["python"],
12
13
  packageRules: [
14
+ {
15
+ description: "Never auto-update declared Python runtime constraints",
16
+ matchDepNames: ["python"],
17
+ enabled: false
18
+ },
13
19
  {
14
20
  matchCategories: ["python"],
15
21
  groupName: "all python dependencies",
@@ -60,7 +60,7 @@ jobs:
60
60
  echo "name=${name}" >> "$GITHUB_OUTPUT"
61
61
 
62
62
  - name: Rename binary
63
- run: mv bin/agr-tui "bin/${{ steps.name.outputs.name }}"
63
+ run: mv bin/agr-opentui "bin/${{ steps.name.outputs.name }}"
64
64
 
65
65
  - name: Upload artifact
66
66
  uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
@@ -58,7 +58,7 @@ jobs:
58
58
  - name: Setup Python
59
59
  uses: actions/setup-python@v6
60
60
  with:
61
- python-version: "3.14.3"
61
+ python-version: "3.10"
62
62
 
63
63
  - name: Setup uv
64
64
  uses: astral-sh/setup-uv@v7
@@ -61,12 +61,20 @@ jobs:
61
61
  - name: Setup Python
62
62
  uses: actions/setup-python@v6
63
63
  with:
64
- python-version: "3.14.3"
64
+ python-version: "3.10"
65
+
66
+ - name: Setup Bun
67
+ uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2.1.2
68
+ with:
69
+ bun-version: "1.3.8"
70
+
71
+ - name: Install Bun dependencies
72
+ run: bun install
65
73
 
66
74
  - name: Build package
67
75
  run: |
68
76
  python -m pip install --upgrade pip build
69
- python -m build
77
+ make py-build
70
78
 
71
79
  - name: Upload dist artifacts
72
80
  uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
@@ -2,7 +2,7 @@ BUN ?= bun
2
2
  PYTHON ?= python3
3
3
  ENTRY ?= src/main.ts
4
4
  OUT_DIR ?= bin
5
- OUT ?= $(OUT_DIR)/agr-tui
5
+ OUT ?= $(OUT_DIR)/agr-opentui
6
6
  DIST_DIR ?= dist
7
7
 
8
8
  .PHONY: build clean
@@ -22,6 +22,11 @@ check:
22
22
 
23
23
  py-build:
24
24
  rm -rf $(DIST_DIR)
25
+ mkdir -p agr_opentui/bin
26
+ rm -f agr_opentui/bin/agr-opentui
27
+ $(BUN) run build
28
+ cp $(OUT) agr_opentui/bin/agr-opentui
29
+ chmod +x agr_opentui/bin/agr-opentui
25
30
  $(PYTHON) -m build
26
31
 
27
32
  py-publish: py-build
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agr-opentui
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: OpenTUI frontend for agr
5
5
  Project-URL: Homepage, https://github.com/RelativeSure/agr-opentui
6
6
  Project-URL: Repository, https://github.com/RelativeSure/agr-opentui
@@ -14,10 +14,10 @@ Classifier: Intended Audience :: Developers
14
14
  Classifier: License :: OSI Approved :: MIT License
15
15
  Classifier: Operating System :: OS Independent
16
16
  Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Programming Language :: Python :: 3.10
18
18
  Classifier: Topic :: Software Development :: Build Tools
19
19
  Classifier: Topic :: Utilities
20
- Requires-Python: >=3.14.3
20
+ Requires-Python: >=3.10
21
21
  Requires-Dist: agr>=0.7.4
22
22
  Description-Content-Type: text/markdown
23
23
 
@@ -37,6 +37,26 @@ An OpenTUI interface for the `agr`/`agrx` CLI: view configured skills, trigger `
37
37
  `agr-opentui` is an OpenTUI front-end for `agr`/`agrx`.
38
38
  The default discover source in this repo points to `https://github.com/kasperjunge/agent-resources`.
39
39
 
40
+ ## Install from PyPI
41
+
42
+ With `uv`:
43
+
44
+ ```bash
45
+ uv tool install agr-opentui
46
+ ```
47
+
48
+ With `pip`:
49
+
50
+ ```bash
51
+ python -m pip install agr-opentui
52
+ ```
53
+
54
+ Then run:
55
+
56
+ ```bash
57
+ agr-opentui
58
+ ```
59
+
40
60
  ## Usage
41
61
 
42
62
  Tabs:
@@ -95,7 +115,7 @@ Discover flow:
95
115
 
96
116
  ## Requirements
97
117
 
98
- ### Runtime (using `agr-tui`):
118
+ ### Runtime (using `agr-opentui`):
99
119
  - Python 3.10+
100
120
  - `uv`
101
121
  - `agr` + `agrx` on your `PATH`
@@ -113,7 +133,7 @@ or
113
133
  ```bash
114
134
  make build
115
135
  ```
116
- This creates `bin/agr-tui`.
136
+ This creates `bin/agr-opentui`.
117
137
 
118
138
 
119
139
  #### Install
@@ -135,7 +155,7 @@ Run it from the repo you want to manage (the current working directory is the ta
135
155
 
136
156
  ```bash
137
157
  cd /path/to/your/project
138
- agr-tui
158
+ agr-opentui
139
159
  ```
140
160
 
141
161
  `agr-opentui` itself does not need to contain your target repo's `agr.toml`.
@@ -14,6 +14,26 @@ An OpenTUI interface for the `agr`/`agrx` CLI: view configured skills, trigger `
14
14
  `agr-opentui` is an OpenTUI front-end for `agr`/`agrx`.
15
15
  The default discover source in this repo points to `https://github.com/kasperjunge/agent-resources`.
16
16
 
17
+ ## Install from PyPI
18
+
19
+ With `uv`:
20
+
21
+ ```bash
22
+ uv tool install agr-opentui
23
+ ```
24
+
25
+ With `pip`:
26
+
27
+ ```bash
28
+ python -m pip install agr-opentui
29
+ ```
30
+
31
+ Then run:
32
+
33
+ ```bash
34
+ agr-opentui
35
+ ```
36
+
17
37
  ## Usage
18
38
 
19
39
  Tabs:
@@ -72,7 +92,7 @@ Discover flow:
72
92
 
73
93
  ## Requirements
74
94
 
75
- ### Runtime (using `agr-tui`):
95
+ ### Runtime (using `agr-opentui`):
76
96
  - Python 3.10+
77
97
  - `uv`
78
98
  - `agr` + `agrx` on your `PATH`
@@ -90,7 +110,7 @@ or
90
110
  ```bash
91
111
  make build
92
112
  ```
93
- This creates `bin/agr-tui`.
113
+ This creates `bin/agr-opentui`.
94
114
 
95
115
 
96
116
  #### Install
@@ -112,7 +132,7 @@ Run it from the repo you want to manage (the current working directory is the ta
112
132
 
113
133
  ```bash
114
134
  cd /path/to/your/project
115
- agr-tui
135
+ agr-opentui
116
136
  ```
117
137
 
118
138
  `agr-opentui` itself does not need to contain your target repo's `agr.toml`.
@@ -0,0 +1,28 @@
1
+ """CLI launcher for the packaged OpenTUI binary."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import os
6
+ import sys
7
+ from pathlib import Path
8
+
9
+ _BINARY_NAME = "agr-opentui"
10
+
11
+
12
+ def _binary_path() -> Path:
13
+ return Path(__file__).resolve().parent / "bin" / _BINARY_NAME
14
+
15
+
16
+ def main() -> None:
17
+ binary = _binary_path()
18
+ if not binary.exists():
19
+ raise SystemExit(
20
+ "agr-opentui binary is not bundled in this build. "
21
+ "Install a wheel that includes the binary for your platform."
22
+ )
23
+
24
+ os.execv(str(binary), [str(binary), *sys.argv[1:]])
25
+
26
+
27
+ if __name__ == "__main__":
28
+ main()
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agr-opentui"
3
- version = "0.3.1"
3
+ version = "0.3.3"
4
4
  description = "OpenTUI frontend for agr"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -15,15 +15,18 @@ classifiers = [
15
15
  "License :: OSI Approved :: MIT License",
16
16
  "Operating System :: OS Independent",
17
17
  "Programming Language :: Python :: 3",
18
- "Programming Language :: Python :: 3.14",
18
+ "Programming Language :: Python :: 3.10",
19
19
  "Topic :: Software Development :: Build Tools",
20
20
  "Topic :: Utilities",
21
21
  ]
22
- requires-python = ">=3.14.3"
22
+ requires-python = ">=3.10"
23
23
  dependencies = [
24
24
  "agr>=0.7.4",
25
25
  ]
26
26
 
27
+ [project.scripts]
28
+ agr-opentui = "agr_opentui.cli:main"
29
+
27
30
  [project.urls]
28
31
  Homepage = "https://github.com/RelativeSure/agr-opentui"
29
32
  Repository = "https://github.com/RelativeSure/agr-opentui"
@@ -32,3 +35,8 @@ Issues = "https://github.com/RelativeSure/agr-opentui/issues"
32
35
  [build-system]
33
36
  requires = ["hatchling"]
34
37
  build-backend = "hatchling.build"
38
+
39
+ [tool.hatch.build]
40
+ artifacts = [
41
+ "agr_opentui/bin/agr-opentui",
42
+ ]
@@ -1,6 +1,6 @@
1
1
  version = 1
2
2
  revision = 3
3
- requires-python = ">=3.14.3"
3
+ requires-python = ">=3.10"
4
4
 
5
5
  [[package]]
6
6
  name = "agr"
@@ -19,7 +19,7 @@ wheels = [
19
19
 
20
20
  [[package]]
21
21
  name = "agr-opentui"
22
- version = "0.3.1"
22
+ version = "0.3.3"
23
23
  source = { editable = "." }
24
24
  dependencies = [
25
25
  { name = "agr" },
@@ -33,7 +33,9 @@ name = "anyio"
33
33
  version = "4.12.1"
34
34
  source = { registry = "https://pypi.org/simple" }
35
35
  dependencies = [
36
+ { name = "exceptiongroup", marker = "python_full_version < '3.11'" },
36
37
  { name = "idna" },
38
+ { name = "typing-extensions", marker = "python_full_version < '3.13'" },
37
39
  ]
38
40
  sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" }
39
41
  wheels = [
@@ -70,6 +72,18 @@ wheels = [
70
72
  { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
71
73
  ]
72
74
 
75
+ [[package]]
76
+ name = "exceptiongroup"
77
+ version = "1.3.1"
78
+ source = { registry = "https://pypi.org/simple" }
79
+ dependencies = [
80
+ { name = "typing-extensions", marker = "python_full_version < '3.13'" },
81
+ ]
82
+ sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" }
83
+ wheels = [
84
+ { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" },
85
+ ]
86
+
73
87
  [[package]]
74
88
  name = "h11"
75
89
  version = "0.16.0"
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
File without changes
File without changes
File without changes