From 8431b14509a170441f84293f370e2ce9c7cc917d Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Wed, 18 Mar 2026 18:10:48 +0000 Subject: [PATCH] pytest-lsp: test on pytest v9 --- lib/pytest-lsp/hatch.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pytest-lsp/hatch.toml b/lib/pytest-lsp/hatch.toml index db2171b..0e06a7c 100644 --- a/lib/pytest-lsp/hatch.toml +++ b/lib/pytest-lsp/hatch.toml @@ -16,9 +16,10 @@ UV_PRERELEASE="allow" [[envs.hatch-test.matrix]] python = ["3.10", "3.11", "3.12", "3.13", "3.14"] -pytest = ["8"] +pytest = ["8", "9"] [envs.hatch-test.overrides] matrix.pytest.dependencies = [ { value = "pytest>=8,<9", if = ["8"] }, + { value = "pytest>=9,<10", if = ["9"] }, ]