python3Packages.jaraco-test: 5.5.1 -> 5.6.0 (#477117)

This commit is contained in:
dotlambda
2026-01-08 16:10:01 +00:00
committed by GitHub
3 changed files with 112 additions and 16 deletions
+7 -1
View File
@@ -35,6 +35,10 @@ let
pythonRelaxDeps = true;
pythonRemoveDeps = [
"importlib-resources"
];
build-system = with python3Packages; [ setuptools-scm ];
dependencies = with python3Packages; [
@@ -70,7 +74,6 @@ let
httpx
huggingface-hub
idna
importlib-resources
jinja2
jiter
json5
@@ -149,6 +152,9 @@ let
patches = [
./fix-tree-sitter.patch
# https://github.com/Aider-AI/aider/pull/4755
./replace-importlib_resources.patch
(replaceVars ./fix-flake8-invoke.patch {
flake8 = lib.getExe python3Packages.flake8;
})
@@ -0,0 +1,97 @@
diff --git a/aider/help.py b/aider/help.py
index c76188d1..9fded648 100755
--- a/aider/help.py
+++ b/aider/help.py
@@ -6,7 +6,7 @@ import shutil
import warnings
from pathlib import Path
-import importlib_resources
+import importlib.resources
from aider import __version__, utils
from aider.dump import dump # noqa: F401
@@ -31,7 +31,7 @@ def install_help_extra(io):
def get_package_files():
- for path in importlib_resources.files("aider.website").iterdir():
+ for path in importlib.resources.files("aider.website").iterdir():
if path.is_file():
yield path
elif path.is_dir():
@@ -112,7 +112,7 @@ def get_index():
continue
doc = Document(
- text=importlib_resources.files("aider.website")
+ text=importlib.resources.files("aider.website")
.joinpath(fname)
.read_text(encoding="utf-8"),
metadata=dict(
diff --git a/aider/main.py b/aider/main.py
index afb3f836..7ade37af 100644
--- a/aider/main.py
+++ b/aider/main.py
@@ -13,7 +13,7 @@ try:
except ImportError:
git = None
-import importlib_resources
+import importlib.resources
import shtab
from dotenv import load_dotenv
from prompt_toolkit.enums import EditingMode
@@ -391,7 +391,7 @@ def register_litellm_models(git_root, model_metadata_fname, io, verbose=False):
model_metadata_files = []
# Add the resource file path
- resource_metadata = importlib_resources.files("aider.resources").joinpath("model-metadata.json")
+ resource_metadata = importlib.resources.files("aider.resources").joinpath("model-metadata.json")
model_metadata_files.append(str(resource_metadata))
model_metadata_files += generate_search_path_list(
diff --git a/aider/resources/__init__.py b/aider/resources/__init__.py
index f7ca4efb..cabf3c36 100644
--- a/aider/resources/__init__.py
+++ b/aider/resources/__init__.py
@@ -1,3 +1,3 @@
-# This ensures that importlib_resources.files("aider.resources")
+# This ensures that importlib.resources.files("aider.resources")
# doesn't raise ImportError, even if there are no other files in this
# dir.
diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py
index cc694a9f..82124b28 100755
--- a/benchmark/benchmark.py
+++ b/benchmark/benchmark.py
@@ -16,7 +16,7 @@ from types import SimpleNamespace
from typing import List, Optional
import git
-import importlib_resources
+import importlib.resources
import lox
import pandas as pd
import prompts
@@ -320,7 +320,7 @@ def main(
test_dnames = sorted(str(d.relative_to(original_dname)) for d in exercise_dirs)
- resource_metadata = importlib_resources.files("aider.resources").joinpath("model-metadata.json")
+ resource_metadata = importlib.resources.files("aider.resources").joinpath("model-metadata.json")
model_metadata_files_loaded = models.register_litellm_models([resource_metadata])
dump(model_metadata_files_loaded)
diff --git a/tests/basic/test_main.py b/tests/basic/test_main.py
index c8966a53..ec7a04a1 100644
--- a/tests/basic/test_main.py
+++ b/tests/basic/test_main.py
@@ -1303,7 +1303,7 @@ class TestMain(TestCase):
mock_files = MagicMock()
mock_files.joinpath.return_value = mock_resource_path
- with patch("aider.main.importlib_resources.files", return_value=mock_files):
+ with patch("aider.main.importlib.resources.files", return_value=mock_files):
# Capture stdout to check the output
with patch("sys.stdout", new_callable=StringIO) as mock_stdout:
main(
@@ -1,54 +1,47 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools-scm,
toml,
jaraco-functools,
jaraco-context,
more-itertools,
jaraco-collections,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "jaraco-test";
version = "5.5.1";
version = "5.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.test";
tag = "v${version}";
hash = "sha256-jbnU6PFVUd/eD9CWHyJvaTFkcZaIIwztkN9UbQZH1RU=";
hash = "sha256-Ym0r92xCh+DNpFexqPlRVgcDGYNvnaJHEs5/RMaUr+s=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"coherent.licensed",' ""
'';
build-system = [ setuptools-scm ];
dependencies = [
toml
jaraco-functools
jaraco-context
more-itertools
jaraco-collections
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
# https://github.com/jaraco/jaraco.test/issues/6
"jaraco/test/cpython.py"
];
pythonImportsCheck = [ "jaraco.test" ];
meta = {
description = "Testing support by jaraco";
homepage = "https://github.com/jaraco/jaraco.test";
changelog = "https://github.com/jaraco/jaraco.test/blob/${src.rev}/NEWS.rst";
changelog = "https://github.com/jaraco/jaraco.test/blob/${src.tag}/NEWS.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};