From 41323e405db0c59fd469b809e68159ef85575ece Mon Sep 17 00:00:00 2001 From: Anselm Levskaya Date: Mon, 6 Nov 2023 17:58:07 -0800 Subject: [PATCH] exempt a jax.config deprecation warning --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 14c7f31ede..36edf12c3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -157,6 +157,8 @@ filterwarnings = [ "ignore:.*ml_dtypes.float8_e4m3b11 is deprecated.*:DeprecationWarning", # DeprecationWarning: jax.core.Shape is deprecated. Use Shape = Sequence[int | Any]. (chex, recheck by Nov 2023) "ignore:.*jax.core.Shape is deprecated.*:DeprecationWarning", + # DeprecationWarning: jax.config.define_bool_state is deprecated. Please use other libraries for configuration instead. + "ignore:.*jax.config.define_bool_state is deprecated.:DeprecationWarning", ] [tool.coverage.report]