etch-loop 0.5.3__tar.gz → 0.5.4__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 (24) hide show
  1. {etch_loop-0.5.3 → etch_loop-0.5.4}/PKG-INFO +1 -1
  2. {etch_loop-0.5.3 → etch_loop-0.5.4}/pyproject.toml +1 -1
  3. etch_loop-0.5.4/src/etch/__init__.py +1 -0
  4. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/display.py +2 -0
  5. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/loop.py +1 -0
  6. etch_loop-0.5.3/src/etch/__init__.py +0 -1
  7. {etch_loop-0.5.3 → etch_loop-0.5.4}/.github/workflows/workflow.yml +0 -0
  8. {etch_loop-0.5.3 → etch_loop-0.5.4}/README.md +0 -0
  9. {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/BREAK.md +0 -0
  10. {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/ETCH.md +0 -0
  11. {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/RUN.md +0 -0
  12. {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/SCAN.md +0 -0
  13. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/agent.py +0 -0
  14. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/analyze.py +0 -0
  15. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/cli.py +0 -0
  16. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/git.py +0 -0
  17. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/prompt.py +0 -0
  18. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/report.py +0 -0
  19. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/signals.py +0 -0
  20. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/BREAK.md +0 -0
  21. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/ETCH.md +0 -0
  22. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/RUN.md +0 -0
  23. {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/SCAN.md +0 -0
  24. {etch_loop-0.5.3 → etch_loop-0.5.4}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: etch-loop
3
- Version: 0.5.3
3
+ Version: 0.5.4
4
4
  Summary: Run Claude Code in a fix-break loop until your codebase is clean
5
5
  License: MIT
6
6
  Requires-Python: >=3.11
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "etch-loop"
3
- version = "0.5.3"
3
+ version = "0.5.4"
4
4
  requires-python = ">=3.11"
5
5
  description = "Run Claude Code in a fix-break loop until your codebase is clean"
6
6
  readme = "README.md"
@@ -0,0 +1 @@
1
+ __version__ = "0.5.4"
@@ -117,6 +117,7 @@ class EtchDisplay:
117
117
  console=self._console,
118
118
  refresh_per_second=15,
119
119
  transient=False,
120
+ vertical_overflow="visible",
120
121
  )
121
122
  self._live.__enter__()
122
123
  self._start_ticker()
@@ -345,6 +346,7 @@ class InitDisplay:
345
346
  console=self._console,
346
347
  refresh_per_second=15,
347
348
  transient=False,
349
+ vertical_overflow="visible",
348
350
  )
349
351
  self._live.__enter__()
350
352
  self._start_ticker()
@@ -210,6 +210,7 @@ def run(
210
210
  # Focus the breaker only on files the fixer actually changed.
211
211
  # This prevents the breaker from finding brand-new issues in
212
212
  # untouched files, which causes the loop to thrash.
213
+ # In --no-git mode we can't determine changed files, so skip scoping.
213
214
  effective_break_text = break_text
214
215
  if not no_git:
215
216
  recent_files = git.changed_files(since_commits=1)
@@ -1 +0,0 @@
1
- __version__ = "0.5.3"
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
File without changes