Skip to content

Commit

Permalink
Minor release 1.3.1
Browse files Browse the repository at this point in the history
Fix bug re head, tail on axes > 2
  • Loading branch information
MariusWirtz committed Apr 19, 2023
1 parent d7f6a90 commit 806597d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mdxpy/mdx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1254,8 +1254,8 @@ def to_mdx(self, head_columns: int = None, head_rows: int = None, tail_columns:
self._axis_mdx(
position,
# default for head, tail is False for axes beyond rows and columns
head=head_by_axis_position.get(position, False),
tail=tail_by_axis_position.get(position, False),
head=head_by_axis_position.get(position, None),
tail=tail_by_axis_position.get(position, None),
skip_dimension_properties=skip_dimension_properties)
for position
in self.axes)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="mdxpy",
version='1.3',
version='1.3.1',
maintainer='Marius Wirtz',
maintainer_email='[email protected]',
license="MIT-LICENSE",
Expand Down

0 comments on commit 806597d

Please sign in to comment.