aider-chat: 0.62.0 -> 0.65.0 (#358832)

This commit is contained in:
Yt 2024-11-28 02:50:48 -05:00 committed by GitHub
commit 7bc536f6f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 5 deletions

View File

@ -12,7 +12,7 @@ let
self = python3; self = python3;
packageOverrides = _: super: { tree-sitter = super.tree-sitter_0_21; }; packageOverrides = _: super: { tree-sitter = super.tree-sitter_0_21; };
}; };
version = "0.62.0"; version = "0.65.0";
aider-chat = python3.pkgs.buildPythonApplication { aider-chat = python3.pkgs.buildPythonApplication {
pname = "aider-chat"; pname = "aider-chat";
inherit version; inherit version;
@ -22,7 +22,7 @@ let
owner = "Aider-AI"; owner = "Aider-AI";
repo = "aider"; repo = "aider";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-o5vyOaJSUcdwuHBbzgpo5RDpZLnIur5dM+b7Y7PVBXA="; hash = "sha256-crQnkTOujflBcAAOY8rjgSEioM/9Vxud3UfgipJ07uA=";
}; };
pythonRelaxDeps = true; pythonRelaxDeps = true;
@ -150,11 +150,16 @@ let
# Tests fails on darwin # Tests fails on darwin
"test_dark_mode_sets_code_theme" "test_dark_mode_sets_code_theme"
"test_default_env_file_sets_automatic_variable" "test_default_env_file_sets_automatic_variable"
# FileNotFoundError: [Errno 2] No such file or directory: 'vim'
"test_pipe_editor"
];
makeWrapperArgs = [
"--set AIDER_CHECK_UPDATE false"
]; ];
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME=$(mktemp -d)
export AIDER_CHECK_UPDATE=false
''; '';
optional-dependencies = with python3.pkgs; { optional-dependencies = with python3.pkgs; {

View File

@ -37,7 +37,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "litellm"; pname = "litellm";
version = "1.51.2"; version = "1.52.16";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -46,7 +46,7 @@ buildPythonPackage rec {
owner = "BerriAI"; owner = "BerriAI";
repo = "litellm"; repo = "litellm";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-jC5BiD4JFfsiyNOSlY6rH6l3Dk6AKKXJ8+Q6MTGYTpM="; hash = "sha256-WDD7jsFajzBTQCsB1235n3bMQXzOoh98BOBXLVvG/zQ=";
}; };
build-system = [ poetry-core ]; build-system = [ poetry-core ];