1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Ole Streicher <olebole@debian.org>
Date: Fri, 15 Dec 2023 12:08:59 +0100
Subject: Ignore all deprecation warnings
Closes: #1058360
---
pyproject.toml | 1 +
1 file changed, 1 insertion(+)
diff --git a/pyproject.toml b/pyproject.toml
index a76fb41..39e076b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -78,6 +78,7 @@ addopts = [
xfail_strict = true
filterwarnings = [
"error",
+ "ignore::DeprecationWarning",
"ignore:numpy\\.ufunc size changed:RuntimeWarning",
"ignore:numpy\\.ndarray size changed:RuntimeWarning",
"ignore:Can\\'t import specreduce_data package",
|