codexapi 0.5.8__tar.gz → 0.5.9__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.
- {codexapi-0.5.8/src/codexapi.egg-info → codexapi-0.5.9}/PKG-INFO +1 -1
- {codexapi-0.5.8 → codexapi-0.5.9}/pyproject.toml +1 -1
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/__init__.py +1 -1
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/gh_integration.py +2 -2
- {codexapi-0.5.8 → codexapi-0.5.9/src/codexapi.egg-info}/PKG-INFO +1 -1
- {codexapi-0.5.8 → codexapi-0.5.9}/LICENSE +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/README.md +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/setup.cfg +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/__main__.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/agent.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/cli.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/foreach.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/ralph.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/task.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi/taskfile.py +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi.egg-info/SOURCES.txt +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi.egg-info/dependency_links.txt +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi.egg-info/entry_points.txt +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi.egg-info/requires.txt +0 -0
- {codexapi-0.5.8 → codexapi-0.5.9}/src/codexapi.egg-info/top_level.txt +0 -0
|
@@ -64,7 +64,7 @@ def _match_task_file(issue, task_map):
|
|
|
64
64
|
def _strip_progress_section(body):
|
|
65
65
|
if not body:
|
|
66
66
|
return ""
|
|
67
|
-
match = re.search(r"(?m)^## Progress
|
|
67
|
+
match = re.search(r"(?m)^## Progress\s*$", body)
|
|
68
68
|
if not match:
|
|
69
69
|
return body.strip()
|
|
70
70
|
return body[:match.start()].rstrip()
|
|
@@ -78,7 +78,7 @@ def _format_item_text(issue, description):
|
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
def _format_status_line(status_line):
|
|
81
|
-
match = re.match(r"
|
|
81
|
+
match = re.match(r"^\[(?P<turns>[^ ]+) @ (?P<elapsed>[^\]]+)\]:\s*(?P<summary>.*)$", status_line)
|
|
82
82
|
if not match:
|
|
83
83
|
return status_line
|
|
84
84
|
summary = match.group("summary").strip()
|
|
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
|
|
File without changes
|
|
File without changes
|