aider-ce 0.87.5.dev3__py3-none-any.whl → 0.87.6.dev1__py3-none-any.whl

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.

Potentially problematic release.


This version of aider-ce might be problematic. Click here for more details.

aider/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from packaging import version
2
2
 
3
- __version__ = "0.87.4.dev"
3
+ __version__ = "0.87.6.dev"
4
4
  safe_version = __version__
5
5
 
6
6
  try:
aider/_version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.87.5.dev3'
32
- __version_tuple__ = version_tuple = (0, 87, 5, 'dev3')
31
+ __version__ = version = '0.87.6.dev1'
32
+ __version_tuple__ = version_tuple = (0, 87, 6, 'dev1')
33
33
 
34
34
  __commit_id__ = commit_id = None
aider/exceptions.py CHANGED
@@ -28,6 +28,7 @@ EXCEPTIONS = [
28
28
  "The API provider has refused the request due to a safety policy about the content.",
29
29
  ),
30
30
  ExInfo("ContextWindowExceededError", False, None), # special case handled in base_coder
31
+ ExInfo("ImageFetchError", True, "The API cannot fetch an image"),
31
32
  ExInfo("InternalServerError", True, "The API provider's servers are down or overloaded."),
32
33
  ExInfo("InvalidRequestError", True, None),
33
34
  ExInfo("JSONSchemaValidationError", True, None),
@@ -66,8 +67,10 @@ class LiteLLMExceptions:
66
67
  raise ValueError(f"{var} is in litellm but not in aider's exceptions list")
67
68
 
68
69
  for var in self.exception_info:
69
- ex = getattr(litellm, var)
70
- self.exceptions[ex] = self.exception_info[var]
70
+ ex = getattr(litellm, var, "default")
71
+
72
+ if ex != "default":
73
+ self.exceptions[ex] = self.exception_info[var]
71
74
 
72
75
  def exceptions_tuple(self):
73
76
  return tuple(self.exceptions)
@@ -1826,6 +1826,7 @@
1826
1826
  use_repo_map: true
1827
1827
  use_temperature: false
1828
1828
  accepts_settings: ["reasoning_effort"]
1829
+ overeager: true
1829
1830
 
1830
1831
  - name: gpt-5-2025-08-07
1831
1832
  edit_format: diff
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aider-ce
3
- Version: 0.87.5.dev3
3
+ Version: 0.87.6.dev1
4
4
  Summary: Aider is AI pair programming in your terminal
5
5
  Project-URL: Homepage, https://github.com/dwash96/aider-ce
6
6
  Classifier: Development Status :: 4 - Beta
@@ -16,6 +16,44 @@ Classifier: Topic :: Software Development
16
16
  Requires-Python: >=3.10
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE.txt
19
+ Requires-Dist: pydub>=0.25.1
20
+ Requires-Dist: configargparse>=1.7.1
21
+ Requires-Dist: GitPython>=3.1.45
22
+ Requires-Dist: jsonschema>=4.25.0
23
+ Requires-Dist: rich>=14.1.0
24
+ Requires-Dist: prompt_toolkit
25
+ Requires-Dist: backoff>=2.2.1
26
+ Requires-Dist: pathspec>=0.12.1
27
+ Requires-Dist: diskcache>=5.6.3
28
+ Requires-Dist: grep_ast
29
+ Requires-Dist: packaging>=25.0
30
+ Requires-Dist: sounddevice>=0.5.2
31
+ Requires-Dist: soundfile>=0.13.1
32
+ Requires-Dist: beautifulsoup4>=4.13.4
33
+ Requires-Dist: PyYAML>=6.0.2
34
+ Requires-Dist: diff-match-patch>=20241021
35
+ Requires-Dist: pypandoc>=1.15
36
+ Requires-Dist: litellm>=1.75.0
37
+ Requires-Dist: flake8>=7.3.0
38
+ Requires-Dist: importlib_resources
39
+ Requires-Dist: pyperclip>=1.9.0
40
+ Requires-Dist: posthog>=6.4.1
41
+ Requires-Dist: mixpanel>=4.10.1
42
+ Requires-Dist: pexpect>=4.9.0
43
+ Requires-Dist: json5>=0.12.0
44
+ Requires-Dist: psutil>=7.0.0
45
+ Requires-Dist: watchfiles>=1.1.0
46
+ Requires-Dist: socksio>=1.0.0
47
+ Requires-Dist: pillow>=11.3.0
48
+ Requires-Dist: shtab>=1.7.2
49
+ Requires-Dist: oslex>=0.1.3
50
+ Requires-Dist: google-generativeai>=0.8.5
51
+ Requires-Dist: mcp>=1.12.3
52
+ Requires-Dist: networkx>=3.4.2
53
+ Requires-Dist: scipy>=1.15.3
54
+ Requires-Dist: importlib-metadata>=7.2.1
55
+ Requires-Dist: tree-sitter==0.23.2; python_version < "3.10"
56
+ Requires-Dist: tree-sitter>=0.25.1; python_version >= "3.10"
19
57
  Provides-Extra: dev
20
58
  Requires-Dist: pytest; extra == "dev"
21
59
  Requires-Dist: pytest-env; extra == "dev"
@@ -84,7 +122,7 @@ pip install aider-ce
84
122
  or
85
123
 
86
124
  ```
87
- uv install aider-ce
125
+ uv pip install aider-ce
88
126
  ```
89
127
 
90
128
  The package exports an `aider-ce` command that accepts all of Aider's configuration options
@@ -1,6 +1,6 @@
1
- aider/__init__.py,sha256=_0rGOUbmjt_9uXbUMUBIh1wlZS-0HMGGtm16UgIC3lA,496
1
+ aider/__init__.py,sha256=LWj2sw4A4BDQQ6ijpD78hwJMJg_j530bpiLPpghY03M,496
2
2
  aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
- aider/_version.py,sha256=S1v-Q8KSSBUV7yEgh0nYIh03SgFj_2d9EwcLahwAUN0,719
3
+ aider/_version.py,sha256=HvGfSPnughtWjDcsnjxY-yEMp4WpDEEyeGNQ55MS6-w,719
4
4
  aider/analytics.py,sha256=c5ujaCcMc3yG-9rz_0oSsqBwmVQRxJnui6iE_yDyY_M,7507
5
5
  aider/args.py,sha256=yjfHJm-eKBEXJ7MlqoGQEjkFhBlCvGtwp44AajAtROs,32491
6
6
  aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
@@ -11,7 +11,7 @@ aider/deprecated.py,sha256=SNeAWR7ih87F5AyFpC4pxRoJAaw8measBW583w0EUT8,4277
11
11
  aider/diffs.py,sha256=y6_rxIKe3FPCIsVy_RRkHdofguYOhYBr2Oytr5AqjHI,3028
12
12
  aider/dump.py,sha256=-naWnGTc0-lAe_93WxBTpunPRfzNlUK7Q5zgXOprHfA,653
13
13
  aider/editor.py,sha256=_WAipJYEOx-q69mPp_hHAQ2yfeoZklBYjS0rTLxCHEA,4364
14
- aider/exceptions.py,sha256=M-Jtq5o1XDwQ8xLM29lsW1otRGk61Z7D65XGX2ufdnY,3796
14
+ aider/exceptions.py,sha256=W9Qw83348Xl0KwSMc1jYNZ-o8Ok65rBAuB1Mz9P6fUk,3914
15
15
  aider/format_settings.py,sha256=wHW4bLTKwqUKDGX4onxirC4cNgeJ-lHPuS1H04_R444,1041
16
16
  aider/gui.py,sha256=JnHvli1JTCGHAgsOZ8HkAWOKAFxmngbyviZIJeYvjsw,17573
17
17
  aider/help.py,sha256=Q8KS0G05Ick2YsVetpj9lAlNH3WjJTHg3t8sf5ZwlC0,4434
@@ -140,7 +140,7 @@ aider/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQy
140
140
  aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
141
141
  aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
142
142
  aider/resources/model-metadata.json,sha256=aEuPd8EATGOdDHdECxgdI3ep9v3SyDgrp1eMuQoWU5U,28645
143
- aider/resources/model-settings.yml,sha256=_1kdt9osUYPOnN1DaYCvhgphsAOD--XmJgAiWUma5fA,57627
143
+ aider/resources/model-settings.yml,sha256=KD3kgc1kf-4z1MBriRZGFohb9jlZkAJylWj7RL9FSaI,57645
144
144
  aider/tools/__init__.py,sha256=LVV7Cp4C74O5BCKWzES4L1I2K0RSf25WnKb683mOHi8,1198
145
145
  aider/tools/command.py,sha256=TxUByCebyNVpob3Or9pLmSuR9Q0XLvsE4wb9aH1-sk4,2604
146
146
  aider/tools/command_interactive.py,sha256=dgq_XagpIQ9VV79v0lMS87lWcoOwy1bFUT0-EudBz1w,2135
@@ -256,9 +256,9 @@ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mA
256
256
  aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
257
257
  aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
258
258
  aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
259
- aider_ce-0.87.5.dev3.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
260
- aider_ce-0.87.5.dev3.dist-info/METADATA,sha256=0URJc2OpbEq-HLJDwUZZPF86GaI7dE2aUxF2mpunNnQ,16785
261
- aider_ce-0.87.5.dev3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
262
- aider_ce-0.87.5.dev3.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
263
- aider_ce-0.87.5.dev3.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
264
- aider_ce-0.87.5.dev3.dist-info/RECORD,,
259
+ aider_ce-0.87.6.dev1.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
260
+ aider_ce-0.87.6.dev1.dist-info/METADATA,sha256=FSljkTEsGBdKKrSzfdx5E2-oPQMnaCBHBKGOv2ELgag,18052
261
+ aider_ce-0.87.6.dev1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
262
+ aider_ce-0.87.6.dev1.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
263
+ aider_ce-0.87.6.dev1.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
264
+ aider_ce-0.87.6.dev1.dist-info/RECORD,,