Skip to content

Commit 7c4e05f

Browse files
Merge branch 'v4-dev' into dt-required-arg
2 parents bec46b8 + ee0de5f commit 7c4e05f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/ci/recipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Adapted from the conda forge recipe
55
context:
66
name: parcels
7-
version: 4.0.0alpha1 # The last number here needs to be bumped for each new alpha release
7+
version: 4.0.0alpha2 # The last number here needs to be bumped for each new alpha release
88

99
package:
1010
name: ${{ name|lower }}

parcels/_core/particleset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def execute(
517517
self._data["dt"][:] = dt
518518
else:
519519
raise ValueError(
520-
f"The dtype of dt ({dt.dtype}) is coarser than the dtype of the particle dt ({self._data['dt'].dtype}). Please use ParticleSet.set_dt_dtype() to provide a dt with at least the same precision as the particle dt."
520+
f"The dtype of dt ({dt.dtype}) is coarser than the dtype of the particle dt ({self._data['dt'].dtype}). Please use ParticleSet.update_dt_dtype() to provide a dt with at least the same precision as the particle dt."
521521
)
522522

523523
if runtime is not None:

0 commit comments

Comments
 (0)