Skip to content

Commit 8d60c06

Browse files
authored
Merge pull request pysal#979 from sjsrey/rel_1.14.2
Rel 1.14.2
2 parents 8e85852 + 807f18c commit 8d60c06

File tree

7 files changed

+29
-34
lines changed

7 files changed

+29
-34
lines changed

CHANGELOG.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
v<1.14.2>, 2017-09-23
2+
This is a bug fix release for the 1.14 Python 2.x. series of PySAL.
3+
4+
We closed a total of 8 issues, 3 pull requests and 5 regular issues;
5+
this is the full list (generated with the script
6+
:file:`tools/github_stats.py`):
7+
8+
Pull Requests (3):
9+
10+
* :ghpull:`975`: Correction of Geary's C under randomization
11+
* :ghpull:`972`: Bug Fix for #970
12+
* :ghpull:`973`: Passing p_thres in plot_lisa_cluster. This fixes #971
13+
14+
Issues (5):
15+
16+
* :ghissue:`974`: Re: #979
17+
* :ghissue:`975`: Correction of Geary's C under randomization
18+
* :ghissue:`972`: Bug Fix for #970
19+
* :ghissue:`973`: Passing p_thres in plot_lisa_cluster. This fixes #971
20+
* :ghissue:`968`: find_bin does not include top value
21+
22+
123
v<1.14.0>, 2017-07-13
224

325
This is the last version of PySAL that will officially support Python 2.x.

README.rst

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -28,34 +28,6 @@ applications for spatial analysis.
2828
Counties 1990.*
2929

3030

31-
It is important to underscore what PySAL is, and is not, designed to do. First
32-
and foremost, PySAL is a library in the fullest sense of the word. Developers
33-
looking for a suite of spatial analytical methods that they can incorporate
34-
into application development should feel at home using PySAL. Spatial analysts
35-
who may be carrying out research projects requiring customized scripting,
36-
extensive simulation analysis, or those seeking to advance the state of the art
37-
in spatial analysis should also find PySAL to be a useful foundation for their
38-
work.
39-
40-
41-
.. |build| image:: https://travis-ci.org/pysal/pysal.png
42-
:scale: 100%
43-
:align: middle
44-
:target: https://travis-ci.org/pysal/pysal
45-
.. |cover| image:: https://coveralls.io/repos/pysal/pysal/badge.svg?branch=master
46-
:scale: 50%
47-
:align: top
48-
:target: https://coveralls.io/r/pysal/pysal?branch=master
49-
.. |docs| image:: https://readthedocs.org/projects/pysal/badge/?verison=latest
50-
:scale: 50%
51-
:align: top
52-
:target: http://pysal.readthedocs.org/en/latest/
53-
.. |talk| image:: https://badges.gitter.im/Join%20Chat.svg
54-
:scale: 50%
55-
:align: top
56-
:target: https://gitter.im/pysal/pysal?
57-
58-
5931

6032
PySAL modules
6133
=============

THANKS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Pedro Amaral
1111
Luc Anselin
1212
Jotham Apaloo
1313
Daniel Arribas-Bel
14+
Roger Bivand
1415
David C. Folch
1516
Forest Gregg
1617
Myunghwa Hwang

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '1.14.0'
50+
version = '1.14.2'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '1.14.0'
52+
release = '1.14.2'
5353

5454
# The language for content autogenerated by Sphinx. Refer to documentation
5555
# for a list of supported languages.

doc/source/index.rst

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

2121
.. sidebar:: Releases
2222

23-
- `Stable 1.14.0 (Released 2017-7-13) <users/installation.html>`_
23+
- `Stable 1.14.2 (Released 2017-9-23) <users/installation.html>`_
2424
- `Development <http://github.com/pysal/pysal/tree/dev>`_
2525

2626
PySAL is an open source library of spatial analysis functions written in

pysal/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import datetime
2-
version = "1.14.0"
3-
stable_release_date = datetime.date(2017, 7, 13)
2+
version = "1.14.2"
3+
stable_release_date = datetime.date(2017, 9, 23)

setup.py

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

1515
MAJOR = 1
1616
MINOR = 14
17-
MICRO = 0
17+
MICRO = 2
1818
ISRELEASED = False
1919
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
2020

0 commit comments

Comments
 (0)