From c986f7063bee62f4a5afb8c28c7a734d328a9588 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 May 2026 15:05:58 +0000 Subject: [PATCH] chore(deps-dev): Update pytest requirement in /platform 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.0.0...9.0.3) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- platform/pyproject.toml | 2 +- platform/requirements-dev.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/pyproject.toml b/platform/pyproject.toml index 8dca450..29ac889 100644 --- a/platform/pyproject.toml +++ b/platform/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ [project.optional-dependencies] dev = [ - "pytest>=8.0,<9.0", + "pytest>=8.0,<10.0", "ruff>=0.4,<1.0", ] diff --git a/platform/requirements-dev.txt b/platform/requirements-dev.txt index ad3a8cb..a1af6b9 100644 --- a/platform/requirements-dev.txt +++ b/platform/requirements-dev.txt @@ -1,3 +1,3 @@ -r requirements.txt -pytest>=8.0,<9.0 +pytest>=8.0,<10.0 ruff>=0.4,<1.0