Skip to content

Commit

Permalink
Patch version 0.8.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-baer committed Jul 10, 2020
1 parent f66a69b commit bc540d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion findiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .vector import Gradient, Divergence, Curl, Laplacian
from .pde import PDE, BoundaryConditions

__version__ = "0.8.1"
__version__ = "0.8.2"
2 changes: 1 addition & 1 deletion findiff/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def matrix(self, shape, h=None, acc=None):
offsets_long.append(o_long)

# determine points where to evaluate current scheme in long format
nside = len(coeffs) // 2
nside = len(coeff_dict['center']['coefficients']) // 2
if scheme == 'center':
multi_slice = [slice(None, None)] * ndims
multi_slice[axis] = slice(nside, -nside)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='findiff',
version='0.8.1',
version='0.8.2',
description='A Python package for finite difference derivatives in any number of dimensions.',
long_description="""A Python package for finite difference derivatives in any number of dimensions.
Expand Down

0 comments on commit bc540d1

Please sign in to comment.