Skip to content

Commit 215e4a1

Browse files
seismanactions-botweiji14
authored
Add pytest conftest.py file to suppress warnings with NumPy 2.0 (#3307)
Co-authored-by: actions-bot <[email protected]> Co-authored-by: Wei Ji <[email protected]>
1 parent 8d16243 commit 215e4a1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pygmt/conftest.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
conftest.py for pytest.
3+
"""
4+
5+
import numpy as np
6+
from packaging.version import Version
7+
8+
# Keep this until we require numpy to be >=2.0
9+
# Address https://github.com/GenericMappingTools/pygmt/issues/2628.
10+
if Version(np.__version__) >= Version("2.0.0.dev0+git20230726"):
11+
np.set_printoptions(legacy="1.25") # type: ignore[arg-type]

0 commit comments

Comments
 (0)