We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abcfb91 commit 8c4aaedCopy full SHA for 8c4aaed
parcels/__init__.py
@@ -2,6 +2,8 @@
2
3
__version__ = version
4
5
+import warnings as _warnings
6
+
7
from parcels.application_kernels import *
8
from parcels.field import *
9
from parcels.fieldset import *
@@ -11,3 +13,9 @@
11
13
from parcels.particlefile import *
12
14
from parcels.particleset import *
15
from parcels.tools import *
16
17
+_warnings.warn(
18
+ "This is an alpha version of Parcels v4. The API is not stable and may change without deprecation warnings.",
19
+ UserWarning,
20
+ stacklevel=2,
21
+)
0 commit comments