From 99843da00ce8dc620ad5eeb7389f951ae78de711 Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Fri, 31 Oct 2025 22:49:01 +0100 Subject: [PATCH] MAINT: do not require the pytest-cov toml extra AFAICT it never existed. This avoids a warning when installing the test dependencies. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ce44e0606..a3f3515e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,7 @@ changelog = 'https://mesonbuild.com/meson-python/changelog.html' test = [ 'build', 'pytest >= 6.0', - 'pytest-cov[toml]', + 'pytest-cov', 'pytest-mock', 'cython >= 3.0.3', # required for Python 3.12 support 'wheel',