We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d277f commit 501ffe5Copy full SHA for 501ffe5
1 file changed
site/numpy_issues.md
@@ -21,12 +21,16 @@ tags: [remove-cell]
21
import json
22
import functools
23
import datetime
24
+import warnings
25
26
import numpy as np
27
import matplotlib.pyplot as plt
28
from myst_nb import glue
29
30
glue = functools.partial(glue, display=False)
31
+
32
+warnings.filterwarnings(
33
+ "ignore", category=DeprecationWarning, message="parsing timezone")
34
```
35
36
%TODO improve handling of datetimes (super annoying)
0 commit comments