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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: codexapi
3
- Version: 0.5.8
3
+ Version: 0.5.9
4
4
  Summary: Minimal Python API for running the Codex CLI.
5
5
  License: MIT
6
6
  Keywords: codex,agent,cli,openai
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "codexapi"
7
- version = "0.5.8"
7
+ version = "0.5.9"
8
8
  description = "Minimal Python API for running the Codex CLI."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -15,4 +15,4 @@ __all__ = [
15
15
  "task",
16
16
  "task_result",
17
17
  ]
18
- __version__ = "0.5.8"
18
+ __version__ = "0.5.9"
@@ -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\\s*$", body)
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"^\\[(?P<turns>[^ ]+) @ (?P<elapsed>[^\\]]+)\\]:\\s*(?P<summary>.*)$", status_line)
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()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: codexapi
3
- Version: 0.5.8
3
+ Version: 0.5.9
4
4
  Summary: Minimal Python API for running the Codex CLI.
5
5
  License: MIT
6
6
  Keywords: codex,agent,cli,openai
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes