We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d16243 commit 215e4a1Copy full SHA for 215e4a1
pygmt/conftest.py
@@ -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