Skip to content

Commit

Permalink
Release 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala committed Apr 13, 2018
1 parent 79d3f60 commit 9153c29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='scikit-fem',
version='0.1.4',
version='0.1.5',
description='Simple finite element assemblers',
long_description='Easy to use finite element assemblers and related tools. See Github page for more information and examples.', # Optional
url='https://github.com/kinnala/scikit-fem',
Expand Down
2 changes: 1 addition & 1 deletion skfem/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _validate(self):
"""Perform mesh validity checks."""
# check that element connectivity contains integers
# NOTE: this is neccessary for some plotting functionality
if not np.issubdtype(self.t[0, 0], int):
if not np.issubdtype(self.t[0, 0], np.signedinteger):
msg = ("Mesh._validate(): Element connectivity "
"must consist of integers.")
raise Exception(msg)
Expand Down

0 comments on commit 9153c29

Please sign in to comment.