File tree Expand file tree Collapse file tree 7 files changed +29
-34
lines changed
Expand file tree Collapse file tree 7 files changed +29
-34
lines changed Original file line number Diff line number Diff line change 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+
123v<1.14.0>, 2017-07-13
224
325This is the last version of PySAL that will officially support Python 2.x.
Original file line number Diff line number Diff line change @@ -28,34 +28,6 @@ applications for spatial analysis.
2828Counties 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
6032PySAL modules
6133=============
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Pedro Amaral
1111Luc Anselin
1212Jotham Apaloo
1313Daniel Arribas-Bel
14+ Roger Bivand
1415David C. Folch
1516Forest Gregg
1617Myunghwa Hwang
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
2626PySAL is an open source library of spatial analysis functions written in
Original file line number Diff line number Diff line change 11import 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 )
Original file line number Diff line number Diff line change 1414
1515MAJOR = 1
1616MINOR = 14
17- MICRO = 0
17+ MICRO = 2
1818ISRELEASED = False
1919VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
2020
You can’t perform that action at this time.
0 commit comments