1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Alastair McKinstry <mckinstry@debian.org>
Date: Thu, 30 Jan 2020 10:48:44 +0000
Subject: Disable warning_is_error that causes FTBFS because of
Bug-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=950101
Last-Updated: 2020-01-30
Forwarded: no
missing dependencies in ipython
---
doc/conf.py | 3 +++
1 file changed, 3 insertions(+)
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -18,6 +18,9 @@
allowed_failures = set()
+# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=950101
+ipython_warning_is_error = False
+
print("python exec:", sys.executable)
print("sys.path:", sys.path)
print(f"xarray: {xarray.__version__}, {xarray.__file__}")
|