Skip to content

Commit

Permalink
Merge pull request #964 from ljwolf/dev
Browse files Browse the repository at this point in the history
preparing 1.4.1 release
  • Loading branch information
ljwolf committed Jul 29, 2017
2 parents 13e001e + 0c013f2 commit a73bbb3
Show file tree
Hide file tree
Showing 7 changed files with 2,813 additions and 10 deletions.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = '1.14.0'
version = '1.14.1'
# The full version, including alpha/beta/rc tags.
release = '1.14.0'
release = '1.14.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ PySAL

.. sidebar:: Releases

- `Stable 1.14.0 (Released 2017-7-13) <users/installation.html>`_
- `Stable 1.14.1 (Released 2017-7-29) <users/installation.html>`_
- `Development <http://github.com/pysal/pysal/tree/dev>`_

PySAL is an open source library of spatial analysis functions written in
Expand Down
4 changes: 2 additions & 2 deletions pysal/esda/smoothing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1665,7 +1665,7 @@ class Headbanging_Triples(object):
(0.33753, 0.302707)
"""
def __init__(self, data, w, k=5, t=3, angle=135.0, edgecor=False):
raise DepricationWarning('Depricated')
raise DeprecationWarning('Deprecated. This function is no longer supported.')
if k < 3:
raise ValueError("w should be NeareastNeighbors instance & the number of neighbors should be more than 3.")
if not w.id_order_set:
Expand Down Expand Up @@ -1811,7 +1811,7 @@ class Headbanging_Median_Rate(object):
array([ 0.00091659, 0. , 0.00156838, 0.0018315 , 0.00498891])
"""
def __init__(self, e, b, t, aw=None, iteration=1):
warnings.warn("Deprecated", DepricationWarning)
raise DeprecationWarning('Deprecated. This function is no longer supported.')
self.r = e * 1.0 / b
self.tr, self.aw = t.triples, aw
if hasattr(t, 'extra'):
Expand Down

0 comments on commit a73bbb3

Please sign in to comment.