Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Jg 585 animation error #612

Merged
merged 4 commits into from
Apr 19, 2018
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Version 2.0.0.dev9 (in dev)
## Version 2.0.0.dev10 (in development)

* Fixed a bug with animation generation [#585](https://github.com/CCI-Tools/cate/issues/585)
* Upgrade to using newer xarray version after an upstream bugfix [#579](https://github.com/CCI-Tools/cate/issues/579)

## Version 2.0.0.dev9

* Representative default variables [#590](https://github.com/CCI-Tools/cate/issues/590).
* Tasks are no longer executed in parallel [#606](https://github.com/CCI-Tools/cate/issues/606).
Expand Down
2 changes: 1 addition & 1 deletion cate/ops/animate.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,4 +288,4 @@ def _get_min_max(data, monitor=None):
with monitor.child(1).observing("find maximum"):
data_max = data.max()

return (data_min, data_max)
return (data_min.values, data_max.values)
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ dependencies:
- scipy >=0.19,<1.0
- shapely >=1.6,<2.0
- tornado >=5.0,<6.0
# xarray >= 0.10.1 has an issue with time decoding see #579
- xarray ==0.10.0
# Require >= 0.10.3 due to #579
- xarray >=0.10.3
#
# for testing only
#
Expand Down