From aa5cf92b48c80c3f12d8e4291839ee789d367aee Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 21 Jan 2023 15:17:21 +0000 Subject: [PATCH] renovate config: Don't bundle major bumps into one PR for pip dependencies (#92) --- .editorconfig | 4 ++-- .github/renovate.json | 4 ++++ pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 8c1f4728..f0af1616 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,8 +5,8 @@ trim_trailing_whitespace = true insert_final_newline = true indent_style = space -[*.{py,toml,json}] +[*.{py,toml}] indent_size = 4 -[*.{yml,yaml,flake8}] +[*.{yml,yaml,flake8,json}] indent_size = 2 diff --git a/.github/renovate.json b/.github/renovate.json index a969ca4c..c47b6aaa 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -23,6 +23,10 @@ "matchManagers": [ "pip_requirements" ], + "matchUpdateTypes": [ + "minor", + "patch" + ], "description": "Group all pip requirements", "stabilityDays": 7 } diff --git a/pyproject.toml b/pyproject.toml index f6112908..f5dcd317 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "typeshed_stats" dynamic = ["version"] authors = [ - { name="Alex Waygood", email="alex.waygood@gmail.com" }, + { name="Alex Waygood", email="alex.waygood@gmail.com" }, ] description = "Library and command-line tool to gather stats on typeshed packages" license = { text = "MIT" }