Skip to content

Commit

Permalink
Merge branch 'release/1.6.0' into feature/issue-237-improve-test-cove…
Browse files Browse the repository at this point in the history
…rage-further-particularly-for-dimension_cleanup
  • Loading branch information
danielfromearth authored Nov 19, 2024
2 parents 5f906c9 + 2e38bb3 commit 807bf9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Common Changelog](https://common-changelog.org/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [1.6.0] - 2024-11-19

### Changed

Expand Down
2 changes: 1 addition & 1 deletion concatenator/dataset_and_group_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def regroup_flattened_dataset(
for dim_name, _ in dataset.dims.items():
new_dim_name = str(dim_name).rsplit(concatenator.group_delim, 1)[-1]
dim_group = _get_nested_group(base_dataset, str(dim_name))
dim_group.createDimension(new_dim_name, dataset.dims[dim_name])
dim_group.createDimension(new_dim_name, dataset.sizes[dim_name])
# dst.createDimension(
# name, (len(dimension) if not dimension.isunlimited() else None))

Expand Down

0 comments on commit 807bf9b

Please sign in to comment.