Skip to content

Commit

Permalink
Release v0.6.1
Browse files Browse the repository at this point in the history
- make Surface use Fortran-contiguous order
  • Loading branch information
skremiec committed Nov 25, 2015
1 parent efd182f commit 4ecd6d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "k3d-jupyter",
"version": "0.6.0",
"version": "0.6.1",
"authors": [
"Artur Trzęsiok <[email protected]>",
"Sebastian Kremiec <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion k3d/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def surface(cls, heights, xmin=-.5, xmax=.5, ymin=-.5, ymax=.5, zmin=-.5, zmax=.
'color': color,
'width': width,
'height': height,
'heights': cls.__to_ndarray(heights),
'heights': cls.__to_ndarray(heights, order='F'),
})

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='k3d',
version='0.6.0',
version='0.6.1',
packages=['k3d'],
include_package_data=True,
install_requires=['jupyter-pip'],
Expand Down

0 comments on commit 4ecd6d6

Please sign in to comment.