Skip to content

Commit 849d1b1

Browse files
committed
actually use the shorter short description (oops)
1 parent 395b539 commit 849d1b1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22

3+
### [v0.1.4]
4+
- actually use the shorter short description (oops)
5+
36
### [v0.1.3]
47
- setup.py is now Python 3 compatible (but wlsqm itself is not yet!)
58
- fixed sdist: package also CHANGELOG.md

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def ext_math(extName):
159159
author_email = "juha.jeronen@jyu.fi",
160160
url = "https://github.com/Technologicat/python-wlsqm",
161161

162-
description = "WLSQM (Weighted Least SQuares Meshless): a fast and accurate meshless least-squares interpolator for Python, for scalar data on 1D, 2D and 3D point clouds.",
162+
description = "Weighted least squares meshless interpolator",
163163
long_description = DESC,
164164

165165
license = "BSD",

wlsqm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from __future__ import absolute_import # https://www.python.org/dev/peps/pep-0328/
2222

23-
__version__ = '0.1.3'
23+
__version__ = '0.1.4'
2424

2525
from .fitter.defs import * # definitions (constants) (common)
2626
from .fitter.simple import * # simple API

0 commit comments

Comments
 (0)