From ce8d0a7f8e8eb1f79163c1aa1dd6e8002a4fda9c Mon Sep 17 00:00:00 2001 From: "Felt, Nicholas" Date: Tue, 3 Sep 2024 09:05:00 -0700 Subject: [PATCH] chore: Create groups for docs and tests dependencies --- .github/renovate.json | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 816832d0..11e86c8e 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -30,35 +30,39 @@ ] }, { - "description": "Group all dependencies for the 'docs' group in pyproject.toml", - "groupName": "poetry-docs-dependencies", + "description": "Group all dependencies for the 'docs' group in pyproject.toml and doc_config/requirements.txt", + "groupName": "docs-dependencies", "matchDepTypes": [ "docs" ], "matchManagers": [ - "poetry" + "poetry", + "pip_requirements" ], "matchPackagePatterns": [ "*" ], "matchPaths": [ - "pyproject.toml" + "pyproject.toml", + "doc_config/requirements.txt" ] }, { - "description": "Group all dependencies for the 'tests' group in pyproject.toml", - "groupName": "poetry-tests-dependencies", + "description": "Group all dependencies for the 'tests' group in pyproject.toml and tests/requirements.txt", + "groupName": "tests-dependencies", "matchDepTypes": [ "tests" ], "matchManagers": [ - "poetry" + "poetry", + "pip_requirements" ], "matchPackagePatterns": [ "*" ], "matchPaths": [ - "pyproject.toml" + "pyproject.toml", + "tests/requirements.txt" ] } ],