File: ignore_ipython_exceptions.patch

package info (click to toggle)
pandas 2.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 66,800 kB
  • sloc: python: 424,812; ansic: 9,190; sh: 264; xml: 102; makefile: 86
file content (18 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Ignore exceptions in documentation examples

Some examples download data, and/or depend on
packages Debian doesn't have, so can't run in a Debian build

Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Forwarded: not-needed

--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -472,6 +472,7 @@ extlinks = {
 }
 
 
+ipython_warning_is_error = False
 ipython_execlines = [
     "import numpy as np",
     "import pandas as pd",