Merge pull request #212 from dwash96/v0.88.36

V0.88.36
This commit is contained in:
Dustin Washington 2025-12-02 00:46:40 -05:00 committed by GitHub
commit 183f48a1ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1195 additions and 30 deletions

View file

@ -492,11 +492,21 @@ def expand_glob_patterns(patterns, root="."):
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
log_file = None
file_excludelist = ["get_bottom_toolbar", "<genexpr>"]
file_excludelist = {
"get_bottom_toolbar": True,
"<genexpr>": True,
"is_active": True,
"auto_save_session": True,
"input_task": True,
"output_task": True,
}
def custom_tracer(frame, event, arg):
import os
try:
import os
except Exception:
return None
global log_file
if not log_file:
@ -1446,7 +1456,8 @@ async def graceful_exit(coder=None, exit_code=0):
except Exception:
pass
await asyncio.sleep(0.5)
# Commenting since this can sometimes case hanging
# await asyncio.sleep(0.5)
return exit_code

File diff suppressed because it is too large Load diff

View file

@ -23,7 +23,10 @@ Homepage = "https://github.com/dwash96/aider-ce"
[project.scripts]
aider-ce = "aider.main:main"
cecli = "aider.main:main"
"ce" = "aider.main:main"
"cecli" = "aider.main:main"
"ce-cli" = "aider.main:main"
"ce.cli" = "aider.main:main"
[tool.setuptools.dynamic]
dependencies = { file = "requirements/requirements.in" }