From 04313c08291f4a797a18e61a42f3514d2f47175d Mon Sep 17 00:00:00 2001 From: Marcus Chiam Date: Fri, 5 Apr 2024 10:12:18 -0700 Subject: [PATCH] added tree_map deprecation warning filter --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5ef929873c..1dd37d8429 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -144,6 +144,8 @@ filterwarnings = [ "ignore:.*pkg_resources is deprecated as an API.*:DeprecationWarning", # DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('google')`. "ignore:.*Deprecated call to.*pkg_resources.declare_namespace.*:DeprecationWarning", + # DeprecationWarning: jax.tree_map is deprecated: use jax.tree.map (jax v0.4.25 or newer) or jax.tree_util.tree_map (any JAX version). + "ignore:.*jax.tree_map is deprecated.*:DeprecationWarning", ] [tool.coverage.report]