gitarsenal-cli 1.9.61 → 1.9.63
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.
package/.venv_status.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"created":"2025-08-
|
|
1
|
+
{"created":"2025-08-13T19:02:38.976Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
package/package.json
CHANGED
|
@@ -579,7 +579,7 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
|
579
579
|
|
|
580
580
|
# Execute the fix command
|
|
581
581
|
fix_success, fix_stdout, fix_stderr, fix_execution_time = _execute_with_box(
|
|
582
|
-
shell, fix_command, timeout=
|
|
582
|
+
shell, fix_command, timeout=300,
|
|
583
583
|
title_line=f"🔧 Executing suggested fix: {fix_command}",
|
|
584
584
|
box=False
|
|
585
585
|
)
|
|
@@ -618,7 +618,7 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
|
618
618
|
# Retry the original command
|
|
619
619
|
print(f"🔄 Retrying original command: {cmd_text}")
|
|
620
620
|
retry_success, retry_stdout, retry_stderr, retry_execution_time = _execute_with_box(
|
|
621
|
-
shell, cmd_text, timeout=
|
|
621
|
+
shell, cmd_text, timeout=300,
|
|
622
622
|
title_line=f"🔄 Retrying command: {cmd_text}",
|
|
623
623
|
box=False
|
|
624
624
|
)
|
|
@@ -658,7 +658,7 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
|
658
658
|
cmd_text = next_cmd['fix_command']
|
|
659
659
|
cmd_index = next_cmd['index']
|
|
660
660
|
success, stdout, stderr, execution_time = _execute_with_box(
|
|
661
|
-
shell, cmd_text, timeout=
|
|
661
|
+
shell, cmd_text, timeout=300,
|
|
662
662
|
title_line=f"🔧 Executing fix command {cmd_index + 1}: {cmd_text}",
|
|
663
663
|
box=False
|
|
664
664
|
)
|
|
@@ -706,7 +706,7 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
|
|
|
706
706
|
fix_cmd = cmd_manager.suggested_fixes[fix_index]
|
|
707
707
|
cmd_text = fix_cmd['fix_command']
|
|
708
708
|
success, stdout, stderr, execution_time = _execute_with_box(
|
|
709
|
-
shell, cmd_text, timeout=
|
|
709
|
+
shell, cmd_text, timeout=300,
|
|
710
710
|
title_line=f"🔧 Executing additional fix: {cmd_text}",
|
|
711
711
|
box=False
|
|
712
712
|
)
|