From 5a0f9bbdb41d051a0d91a18b7badd5582021243a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 02:06:20 +0000 Subject: [PATCH 1/3] Update pytest requirement from <9.0.0,>=8.4.2 to >=8.4.2,<10.0.0 Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.4.2...9.0.0) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bf94d674..76ed7f7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dev = [ "mypy<2.0,>=1.18", "detect-secrets<2.0.0,>=1.5.0", "bandit<2.0.0,>=1.8.6", - "pytest<9.0.0,>=8.4.2", + "pytest>=8.4.2,<10.0.0", "yamllint<2.0.0,>=1.37.1", "pytest-dotenv<1.0.0,>=0.5.2", "types-requests<3.0.0,>=2.32.4", From 6eb53a836673581b145c0fc2005b43d57b38f00b Mon Sep 17 00:00:00 2001 From: Alex Cottner Date: Wed, 12 Nov 2025 04:31:52 -1000 Subject: [PATCH 2/3] ran uv lock --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index 52b90806..675726ef 100644 --- a/uv.lock +++ b/uv.lock @@ -570,7 +570,7 @@ dev = [ { name = "httpx", specifier = ">=0.28.1,<1.0.0" }, { name = "mypy", specifier = ">=1.18,<2.0" }, { name = "pre-commit", specifier = ">=4.3.0,<5.0.0" }, - { name = "pytest", specifier = ">=8.4.2,<9.0.0" }, + { name = "pytest", specifier = ">=8.4.2,<10.0.0" }, { name = "pytest-asyncio", specifier = ">=1.2.0,<2.0.0" }, { name = "pytest-dotenv", specifier = ">=0.5.2,<1.0.0" }, { name = "pytest-factoryboy", specifier = ">=2.8.1,<3.0.0" }, From a22e203be3b251c0b6823262d6ee99df1ca9102c Mon Sep 17 00:00:00 2001 From: Alex Cottner Date: Wed, 12 Nov 2025 04:33:19 -1000 Subject: [PATCH 3/3] Switched package ecosystem to uv --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7d8a15c5..2d9a28be 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - - package-ecosystem: "pip" + - package-ecosystem: "uv" directory: "/" schedule: interval: "weekly"