Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions parcels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

__version__ = version

import warnings as _warnings

from parcels.application_kernels import *
from parcels.field import *
from parcels.fieldset import *
Expand All @@ -11,3 +13,9 @@
from parcels.particlefile import *
from parcels.particleset import *
from parcels.tools import *

_warnings.warn(
"This is an alpha version of Parcels v4. The API is not stable and may change without deprecation warnings.",
UserWarning,
stacklevel=2,
)
Loading