From b83ad7461c239dc08cc007f8e9262204e7491682 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 17:55:58 +0000 Subject: [PATCH] build(deps): Update pytest requirement from >=8 to >=9.1.1 in /tests 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.1.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.1.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tests/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pyproject.toml b/tests/pyproject.toml index d61b801..06f32d4 100644 --- a/tests/pyproject.toml +++ b/tests/pyproject.toml @@ -3,7 +3,7 @@ name = "sqlite-predict-tests" version = "0.0.0" requires-python = ">=3.11" dependencies = [ - "pytest>=8", + "pytest>=9.1.1", "syrupy>=4", "sqlalchemy>=2", ]