From f33b029e20d502cd1642b7426999ef2383ba8535 Mon Sep 17 00:00:00 2001 From: Andrei Stoian <95410270+andrei-stoian-zama@users.noreply.github.com> Date: Sun, 29 Sep 2024 09:19:03 +0200 Subject: [PATCH] fix: test warning sklearn (#902) --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index acf366016..b9bba1d7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -149,7 +149,9 @@ filterwarnings = [ "ignore:Maximum number of iteration reached before convergence.*:sklearn.exceptions.ConvergenceWarning", "ignore:jax.xla_computation is deprecated. Please use the AOT APIs.", "ignore:Named tensors and all their associated APIs*", - "ignore:You are using `torch.load`*" + "ignore:You are using `torch.load`*", + "ignore:open_text is deprecated.*:DeprecationWarning", + "ignore:read_text is deprecated.*:DeprecationWarning", ] [tool.semantic_release]