We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e503b6 + fc91b22 commit 6ae7db6Copy full SHA for 6ae7db6
HISTORY.rst
@@ -4,6 +4,7 @@ History
4
5
0.XX.X (XXXX-XX-XX)
6
-------------------
7
+* Increase validation temperature range max to 360 (PR #142, @dgergel)
8
* Distinguish missing from excess timesteps in timesteps validation (PR #140, @emileten)
9
* Add post wet day correction option in CLI dodola (PR #141 @emileten)
10
dodola/core.py
@@ -707,7 +707,7 @@ def _test_temp_range(ds, var):
707
Ensure temperature values are in a valid range
708
"""
709
assert (ds[var].min() > 150) and (
710
- ds[var].max() < 350
+ ds[var].max() < 360
711
), "{} values are invalid".format(var)
712
713
0 commit comments