From 739c60a52fa3c1b590a90ff8eea678709b572cfb Mon Sep 17 00:00:00 2001 From: Klaus Zimmermann Date: Mon, 29 Jul 2024 10:20:06 +0000 Subject: [PATCH] Ignore two pendingdeprecation warnings --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fbae645f0f..da1ef47e8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -131,6 +131,8 @@ filterwarnings = [ "ignore::PendingDeprecationWarning:conda_index", "ignore::DeprecationWarning:conda_index", "ignore:Python 3.14 will, by default, filter extracted tar archives and reject files or modify their metadata:DeprecationWarning", + "ignore:conda.core.index._supplement_index_with_system is pending deprecation:PendingDeprecationWarning:conda", + "ignore:conda.core.index._make_virtual_package is pending deprecation:PendingDeprecationWarning:conda", ] markers = [ "serial: execute test serially (to avoid race conditions)",