From 99da2340b2777d37228b36965a5be97b27132a22 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Thu, 18 Dec 2025 18:17:10 +0800 Subject: [PATCH] Fix ci --- python/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index bffb76c33d7..e9fbe908246 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -115,4 +115,7 @@ filterwarnings = [ # Pytorch 2.2 on Python 2.12 'ignore:.*is deprecated and will be removed in Python 3\.14.*:DeprecationWarning', 'ignore:.*The distutils package is deprecated.*:DeprecationWarning', + # TensorFlow/Keras import can emit NumPy deprecation FutureWarnings in some environments. + # Keep FutureWarnings as errors generally, but ignore this known-noisy import-time warning. + 'ignore:.*np\.object.*:FutureWarning', ]