File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99- Improve README.md. (PR #169 , @brews )
1010### Changed
1111- Remove duplicated service-level logging info lines of code introduced by PR #148 (PR #168 , @emileten )
12+ - Decrease validation temperature range min to 130 (PR #170 , @emileten )
1213
1314## [ 0.15.1] - 2021-12-29
1415### Fixed
Original file line number Diff line number Diff line change @@ -757,7 +757,7 @@ def _test_temp_range(ds, var):
757757 """
758758 Ensure temperature values are in a valid range
759759 """
760- assert (ds [var ].min () > 150 ) and (
760+ assert (ds [var ].min () > 130 ) and (
761761 ds [var ].max () < 360
762762 ), "{} values are invalid" .format (var )
763763
You can’t perform that action at this time.
0 commit comments