1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Ole Streicher <olebole@debian.org>
Date: Fri, 24 Sep 2021 08:27:59 +0200
Subject: Ignore invalid value warnings that happen on mips64el
---
pyproject.toml | 1 +
1 file changed, 1 insertion(+)
diff --git a/pyproject.toml b/pyproject.toml
index d66d9f2..5e7ce06 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -219,6 +219,7 @@ filterwarnings = [
"ignore::DeprecationWarning",
"ignore::astropy.utils.iers.iers.IERSStaleWarning",
"ignore::erfa.core.ErfaWarning",
+ "ignore:invalid value encountered*:RuntimeWarning",
"ignore:unclosed <socket:ResourceWarning",
"ignore:unclosed <ssl.SSLSocket:ResourceWarning",
"ignore:matplotlibrc text\\.usetex:UserWarning:matplotlib",
|