File tree 2 files changed +0
-7
lines changed
2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import contextlib
7
7
import importlib
8
- import os
9
8
import textwrap
10
9
11
10
import matplotlib .pyplot
17
16
import metpy .calc
18
17
import metpy .units
19
18
20
- # Need to disable fallback before importing pint
21
- os .environ ['PINT_ARRAY_PROTOCOL_FALLBACK' ] = '0'
22
- import pint # noqa: I100, E402
23
-
24
19
25
20
def pytest_report_header ():
26
21
"""Add dependency information to pytest output."""
Original file line number Diff line number Diff line change 4
4
"""Tools for reading, calculating, and plotting with weather data."""
5
5
6
6
# What do we want to pull into the top-level namespace?
7
- import os
8
7
import warnings
9
8
10
9
# Must occur before below imports
11
10
warnings .filterwarnings ('ignore' , 'numpy.dtype size changed' )
12
- os .environ ['PINT_ARRAY_PROTOCOL_FALLBACK' ] = '0'
13
11
14
12
from ._version import get_version # noqa: E402
15
13
from .xarray import * # noqa: F401, F403, E402
You can’t perform that action at this time.
0 commit comments