Skip to content

Commit

Permalink
Merge pull request #170 from emileten/extend-minimum-temperature-tole…
Browse files Browse the repository at this point in the history
…rance

extend minimum temperature tolerance from 150 K to 130 K
  • Loading branch information
emileten authored Jan 17, 2022
2 parents 94a2a3c + 6b30982 commit 95b70fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improve README.md. (PR #169, @brews)
### Changed
- Remove duplicated service-level logging info lines of code introduced by PR #148 (PR #168, @emileten)
- Decrease validation temperature range min to 130 (PR #170, @emileten)

## [0.15.1] - 2021-12-29
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion dodola/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ def _test_temp_range(ds, var):
"""
Ensure temperature values are in a valid range
"""
assert (ds[var].min() > 150) and (
assert (ds[var].min() > 130) and (
ds[var].max() < 360
), "{} values are invalid".format(var)

Expand Down

0 comments on commit 95b70fd

Please sign in to comment.