forked from pysal/pysal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
4882 lines (3895 loc) · 194 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
v<1.13.0>, 2016-11-24
We closed a total of 38 issues, 7 pull requests and 31 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (7):
* :ghpull:`844`: Geotable plot
* :ghpull:`875`: Spint constant
* :ghpull:`874`: Use standard python facilites for warning
* :ghpull:`873`: updating release schedule
* :ghpull:`871`: Put requirements into setup.py so they are installed if missing
* :ghpull:`870`: Doc/release
* :ghpull:`869`: Dev
Issues (31):
* :ghissue:`844`: Geotable plot
* :ghissue:`877`: documentation links to numpy and scipy are broken
* :ghissue:`875`: Spint constant
* :ghissue:`874`: Use standard python facilites for warning
* :ghissue:`873`: updating release schedule
* :ghissue:`871`: Put requirements into setup.py so they are installed if missing
* :ghissue:`591`: check pysal version and report if a more recent stable version is available
* :ghissue:`410`: prototype LISA cluster map
* :ghissue:`333`: Add k functions
* :ghissue:`274`: Implement LISA in network module
* :ghissue:`746`: Network data structures
* :ghissue:`751`: A method to get a list of example-files by type
* :ghissue:`219`: inconsistent treatment of centroids in arc distance calculations in weights/user.py
* :ghissue:`173`: implement cross sectional and space-time scan statistics
* :ghissue:`170`: centralize all kernel based calculations
* :ghissue:`134`: Complete cg.locators
* :ghissue:`94`: Smoothing: add another module based on model-based smoothing
* :ghissue:`91`: Smoothing: Develop simulations for comparing different smoothers
* :ghissue:`90`: Overhaul Polygon class
* :ghissue:`89`: Optimize shapefile reader
* :ghissue:`88`: Optimize Clockwise test
* :ghissue:`86`: Spatial_Dynamics: LISA Time paths
* :ghissue:`85`: Spatial_Dynamics: modified knox statistic
* :ghissue:`84`: Spatial_Dynamics: Optimize Theta
* :ghissue:`652`: Use cKDtree for Arc_KDTree
* :ghissue:`697`: Update Release Management to Support Rolling Releases
* :ghissue:`761`: Object-oriented design for viz module
* :ghissue:`767`: ZeroDivisonError when calculating certain centroids
* :ghissue:`849`: dbf2df can not read dbf files within which there are Chinese characters
* :ghissue:`870`: Doc/release
* :ghissue:`869`: Dev
v<1.12.0>, 2016-09-21
We closed a total of 100 issues, 33 pull requests and 67 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (33):
* :ghpull:`864`: addressing issue #845 and adding tests
* :ghpull:`862`: Memory efficient Gini and tests
* :ghpull:`865`: fix space/tab inconsistency
* :ghpull:`861`: GSOC -SpInt
* :ghpull:`847`: spatial interaction weights
* :ghpull:`863`: B859
* :ghpull:`860`: Incoprate updates to db driver and unittests
* :ghpull:`858`: Dev mltest
* :ghpull:`857`: Fix TabErrors, replace tabs with spaces
* :ghpull:`856`: Make the output and build reproducible
* :ghpull:`851`: fixed typo in test_network.py
* :ghpull:`850`: [REBASE] Distance band speed ups
* :ghpull:`843`: update and clean aesthetic of Network_Usage.ipynb
* :ghpull:`842`: typo correction in network.py
* :ghpull:`841`: [REBASE & REDIRECT] Conditional Database Imports & Docos, #692
* :ghpull:`840`: minor bugfix to #816
* :ghpull:`839`: documentation cleanup on network.analysis.py
* :ghpull:`838`: network.util.py documentation cleanup
* :ghpull:`836`: re: network.py documentation cleanup
* :ghpull:`768`: Modified the way area of a ring is calculated to allow for more precision
* :ghpull:`829`: numba autojit _fisher_jenks_means if numba is available
* :ghpull:`832`: Handling a deprecation warning, and latex errors corrected.
* :ghpull:`834`: Travis testing matrix
* :ghpull:`831`: Refactoring Markov classes for efficiency
* :ghpull:`827`: ESDA Tabular Functions
* :ghpull:`823`: typo and format of docstring of user.py in weights module
* :ghpull:`821`: Pdio
* :ghpull:`817`: D/sur
* :ghpull:`818`: Documentation fix + some PEP8 standardization
* :ghpull:`811`: DistanceBand should correctly handle named weights
* :ghpull:`808`: Dev
* :ghpull:`807`: Updating contrib docs and bumping version for dev
* :ghpull:`797`: working moran plot func
Issues (67):
* :ghissue:`855`: Inefficient Gini Coefficient calculation?
* :ghissue:`864`: addressing issue #845 and adding tests
* :ghissue:`862`: Memory efficient Gini and tests
* :ghissue:`865`: fix space/tab inconsistency
* :ghissue:`861`: GSOC -SpInt
* :ghissue:`847`: spatial interaction weights
* :ghissue:`859`: Wrong there is one disconnected observation (no neighbors)
* :ghissue:`863`: B859
* :ghissue:`860`: Incoprate updates to db driver and unittests
* :ghissue:`858`: Dev mltest
* :ghissue:`857`: Fix TabErrors, replace tabs with spaces
* :ghissue:`854`: handle verication context for githubstats
* :ghissue:`856`: Make the output and build reproducible
* :ghissue:`851`: fixed typo in test_network.py
* :ghissue:`850`: [REBASE] Distance band speed ups
* :ghissue:`846`: DistanceBand speed ups
* :ghissue:`843`: update and clean aesthetic of Network_Usage.ipynb
* :ghissue:`842`: typo correction in network.py
* :ghissue:`692`: Conditional Database Import / Docos
* :ghissue:`841`: [REBASE & REDIRECT] Conditional Database Imports & Docos, #692
* :ghissue:`769`: Windows 7, 64 bit installation issue with visual C++ for python
* :ghissue:`816`: Exception TypeError in geoda_txt.py
* :ghissue:`840`: minor bugfix to #816
* :ghissue:`839`: documentation cleanup on network.analysis.py
* :ghissue:`397`: integrate optimized contiguity builder
* :ghissue:`531`: add user space function to generate numpy arrays
* :ghissue:`654`: meta update for 2-3 conversion
* :ghissue:`676`: Meta not importable from pysal
* :ghissue:`838`: network.util.py documentation cleanup
* :ghissue:`753`: Fix the network ring bug
* :ghissue:`836`: re: network.py documentation cleanup
* :ghissue:`768`: Modified the way area of a ring is calculated to allow for more precision
* :ghissue:`837`: re: network.allneighbordistances() diagonal fill
* :ghissue:`822`: two issues about function choropleth_map in viz module
* :ghissue:`835`: fix deprecation warnings noted in #822
* :ghissue:`829`: numba autojit _fisher_jenks_means if numba is available
* :ghissue:`832`: Handling a deprecation warning, and latex errors corrected.
* :ghissue:`834`: Travis testing matrix
* :ghissue:`825`: Headbanging Median Rate ignores edge correction
* :ghissue:`826`: Spatial Filtering grid definition
* :ghissue:`824`: Direct Age Standardization fails for empty regions
* :ghissue:`833`: PySAL+ optional testing matrix
* :ghissue:`830`: [REBASED] PySAL+ optional testing matrix
* :ghissue:`831`: Refactoring Markov classes for efficiency
* :ghissue:`827`: ESDA Tabular Functions
* :ghissue:`815`: rook case not working in ContiguityWeightsPolygons
* :ghissue:`828`: Fisher_Jenks pure python implementation is too slow
* :ghissue:`814`: Explore Classmethods for alternative constructors
* :ghissue:`795`: switch to scipy.linalg instead of numpy.linalg
* :ghissue:`799`: w_subset(weights:W, ids:np.ndarray) constructs faulty weights object
* :ghissue:`823`: typo and format of docstring of user.py in weights module
* :ghissue:`821`: Pdio
* :ghissue:`794`: spreg ML_lag doesn't always set W in __init__
* :ghissue:`754`: Update README
* :ghissue:`819`: add LIMAs
* :ghissue:`817`: D/sur
* :ghissue:`818`: Documentation fix + some PEP8 standardization
* :ghissue:`809`: Fixed documentation
* :ghissue:`813`: w.remap_ids(ids) never sets w.id_order_set
* :ghissue:`775`: Added a prototype for constructing weights from a list of shapely Polygons
* :ghissue:`810`: DistanceBand fails to accept custom ids
* :ghissue:`811`: DistanceBand should correctly handle named weights
* :ghissue:`780`: Doctests failing on travis
* :ghissue:`801`: ImportError: No module named scipy.spatial
* :ghissue:`808`: Dev
* :ghissue:`807`: Updating contrib docs and bumping version for dev
* :ghissue:`797`: working moran plot func
v<1.11.2>, 2016-05-18
We closed a total of 20 issues, 6 pull requests and 14 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (6):
* :ghpull:`805`: pre Rel1.11.2 and #840
* :ghpull:`802`: fixed issues with model handler failing to correctly discover models
* :ghpull:`798`: fix for css problem on rtd #790
* :ghpull:`793`: Getting weights doctests to pass
* :ghpull:`791`: Doc/rolling
* :ghpull:`792`: Local Moran was using the incorrect moments in z_sim and p_z_sim
Issues (14):
* :ghissue:`805`: pre Rel1.11.2 and #840
* :ghissue:`803`: check_contiguity error..
* :ghissue:`802`: fixed issues with model handler failing to correctly discover models
* :ghissue:`800`: `ps.threshold_continuousW_from_shapefile` returning inf along diagonal
* :ghissue:`771`: KDtree type mismatch in knnW
* :ghissue:`798`: fix for css problem on rtd #790
* :ghissue:`796`: working moran plot func
* :ghissue:`787`: Update docs to reflect Python-3 compatibility
* :ghissue:`587`: ML Lag indexing error on optimization result
* :ghissue:`793`: Getting weights doctests to pass
* :ghissue:`791`: Doc/rolling
* :ghissue:`792`: Local Moran was using the incorrect moments in z_sim and p_z_sim
* :ghissue:`674`: Have PySAL included on OSGeo Live 9
* :ghissue:`779`: DistanceBand include the point itself as neighbor
v<1.11.1>, 2016-04-01
We closed a total of 62 issues, 20 pull requests and 42 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (20):
* :ghpull:`777`: fix minor issues with using stdlib warnings in mapclassify.py
* :ghpull:`766`: Constant check
* :ghpull:`781`: Dev
* :ghpull:`778`: Wkb
* :ghpull:`776`: Updating & find-bin-as-call for Map_Classifiers
* :ghpull:`770`: adding github chrome to make project contributions easier to handle
* :ghpull:`764`: add folium changes needed for notebook to run
* :ghpull:`760`: Update docs for #697
* :ghpull:`763`: docs fix: incorrect array dimensions listed for spatial interaction SpaceTimeEvents
* :ghpull:`756`: B726
* :ghpull:`749`: remove cruft in git root and add gitter badge to the readme
* :ghpull:`748`: Replace deprecated np.rank with np.ndim
* :ghpull:`745`: Lag Categorical & Find Bins
* :ghpull:`741`: fix for #740
* :ghpull:`739`: Dev
* :ghpull:`738`: fixing master version
* :ghpull:`737`: Bumping dev
* :ghpull:`736`: Merge pull request #734 from sjsrey/master
* :ghpull:`735`: Dev in sync with master for 1.11
* :ghpull:`734`: Release 1.11
Issues (42):
* :ghissue:`773`: add isKDTree typecomparison to handle divergent cKDTree and KDTree types
* :ghissue:`777`: fix minor issues with using stdlib warnings in mapclassify.py
* :ghissue:`766`: Constant check
* :ghissue:`782`: Contrib docs
* :ghissue:`781`: Dev
* :ghissue:`762`: viz: folium_mapping.ipynb AttributeError: 'Map' object has no attribute '_build_map'
* :ghissue:`778`: Wkb
* :ghissue:`776`: Updating & find-bin-as-call for Map_Classifiers
* :ghissue:`770`: adding github chrome to make project contributions easier to handle
* :ghissue:`774`: Added a prototype for constructing weights from a list of shapely Polygons
* :ghissue:`772`: knnW user guide doc error
* :ghissue:`765`: potential constant_check bug
* :ghissue:`759`: Fixed code in ipython notebooks
* :ghissue:`752`: [WIP] Add J function to network submodule
* :ghissue:`764`: add folium changes needed for notebook to run
* :ghissue:`760`: Update docs for #697
* :ghissue:`763`: docs fix: incorrect array dimensions listed for spatial interaction SpaceTimeEvents
* :ghissue:`750`: Add gitter badge to README on master branch
* :ghissue:`758`: Fixed code in ipython notebooks
* :ghissue:`755`: add speedup of conditional randomization
* :ghissue:`726`: Compatibility for Scipy 16.1
* :ghissue:`756`: B726
* :ghissue:`749`: remove cruft in git root and add gitter badge to the readme
* :ghissue:`587`: ML Lag
* :ghissue:`748`: Replace deprecated np.rank with np.ndim
* :ghissue:`747`: Replace deprecated np.rank with np.ndim
* :ghissue:`653`: network is returning NAN's on diagonal of distance matrix
* :ghissue:`660`: insert zeros on symmetric matrix diagonal
* :ghissue:`745`: Lag Categorical & Find Bins
* :ghissue:`744`: [REBASED] Update moran.py with much faster iterations
* :ghissue:`732`: Update moran.py with much faster iterations
* :ghissue:`743`: [REBASED]: Update moran.py with much faster iterations
* :ghissue:`742`: Links not working
* :ghissue:`740`: Moran_Local's EI is returned as an array instead of a float
* :ghissue:`741`: fix for #740
* :ghissue:`739`: Dev
* :ghissue:`738`: fixing master version
* :ghissue:`737`: Bumping dev
* :ghissue:`151`: Port pysal to python3
* :ghissue:`736`: Merge pull request #734 from sjsrey/master
* :ghissue:`735`: Dev in sync with master for 1.11
* :ghissue:`734`: Release 1.11
v<1.11.0>, 2016-01-27
GitHub stats for 2015/07/29 - 2016/01/27
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 13 authors contributed 216 commits.
* Dani Arribas-Bel
* David Folch
* Levi John Wolf
* Levi Wolf
* Philip Stephens
* Serge Rey
* Sergio Rey
* Wei Kang
* jlaura
* levi.john.wolf@gmail.com
* ljw
* ljwolf
* pedrovma
We closed a total of 86 issues, 33 pull requests and 53 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (33):
* :ghpull:`724`: add synchronization tool
* :ghpull:`733`: Fb/bump
* :ghpull:`731`: Small docfixes
* :ghpull:`730`: Contrib docs
* :ghpull:`728`: B179
* :ghpull:`727`: Geodf io
* :ghpull:`725`: try pinning scipy,numpy
* :ghpull:`723`: make sure to test all moran classes
* :ghpull:`720`: Moving natural breaks to a cleaner kmeans implementation
* :ghpull:`718`: force counts to be same length as bins
* :ghpull:`714`: Dev
* :ghpull:`715`: Heads
* :ghpull:`713`: Enh712
* :ghpull:`710`: Patsy/Pandas wrapper
* :ghpull:`711`: Travis fixes
* :ghpull:`706`: precommit hook
* :ghpull:`707`: Keep dev updated with any bugfixes into master
* :ghpull:`702`: fix for chi2 test 0 denominator and invocation of chi2 test in LISA_Markov
* :ghpull:`704`: Allcloser
* :ghpull:`703`: Swapping to Allclose and RTOL=.00005 in spreg
* :ghpull:`701`: By col array
* :ghpull:`700`: small optimization of bivariate moran motivated by #695
* :ghpull:`696`: Pypi
* :ghpull:`691`: Update doctest for one-off bug that was fixed with #690
* :ghpull:`690`: fix for lisa markov one off for significance indicator
* :ghpull:`689`: Clpy flex w
* :ghpull:`688`: pep 8 edits
* :ghpull:`687`: Change array assertions into allclose
* :ghpull:`686`: Moran local bivariate
* :ghpull:`684`: 591
* :ghpull:`682`: release instructions updated
* :ghpull:`681`: version bump for next dev cycle
* :ghpull:`680`: Rel1.10
Issues (53):
* :ghissue:`705`: spreg check valve
* :ghissue:`344`: Explore new dependency on ogr
* :ghissue:`459`: Problem with bandwidth
* :ghissue:`552`: Viz organization
* :ghissue:`491`: Test np.allclose() for unit tests
* :ghissue:`529`: Clarity needed on proper reference formatting in sphinx docs
* :ghissue:`699`: Trouble importing pysal - ImportError: DLL load failed
* :ghissue:`716`: `min_threshold_dist_from_shapefile` creating an island in some cases
* :ghissue:`724`: add synchronization tool
* :ghissue:`733`: Fb/bump
* :ghissue:`731`: Small docfixes
* :ghissue:`730`: Contrib docs
* :ghissue:`719`: pysal not working with matplotlib v1.5 for plot_lisa_cluster, plot_choropleth, etc.
* :ghissue:`728`: B179
* :ghissue:`727`: Geodf io
* :ghissue:`725`: try pinning scipy,numpy
* :ghissue:`723`: make sure to test all moran classes
* :ghissue:`720`: Moving natural breaks to a cleaner kmeans implementation
* :ghissue:`717`: esda.mapclassify return problematic counts when there is 0 occurrence in the last class
* :ghissue:`718`: force counts to be same length as bins
* :ghissue:`714`: Dev
* :ghissue:`712`: `block_weights` does not take argument `idVariable`
* :ghissue:`715`: Heads
* :ghissue:`713`: Enh712
* :ghissue:`710`: Patsy/Pandas wrapper
* :ghissue:`711`: Travis fixes
* :ghissue:`706`: precommit hook
* :ghissue:`708`: 2-3: is six a dependency or do we ship it?
* :ghissue:`707`: Keep dev updated with any bugfixes into master
* :ghissue:`702`: fix for chi2 test 0 denominator and invocation of chi2 test in LISA_Markov
* :ghissue:`704`: Allcloser
* :ghissue:`703`: Swapping to Allclose and RTOL=.00005 in spreg
* :ghissue:`698`: Py3merge
* :ghissue:`701`: By col array
* :ghissue:`700`: small optimization of bivariate moran motivated by #695
* :ghissue:`695`: Bivariate global moran's I formula
* :ghissue:`683`: Py3 Conversion Project
* :ghissue:`694`: Allclose in SPREG
* :ghissue:`696`: Pypi
* :ghissue:`691`: Update doctest for one-off bug that was fixed with #690
* :ghissue:`693`: Trouble installation: No module named 'shapes'
* :ghissue:`690`: fix for lisa markov one off for significance indicator
* :ghissue:`689`: Clpy flex w
* :ghissue:`688`: pep 8 edits
* :ghissue:`685`: BV Lisa
* :ghissue:`687`: Change array assertions into allclose
* :ghissue:`686`: Moran local bivariate
* :ghissue:`677`: Make meta importable from base
* :ghissue:`684`: 591
* :ghissue:`682`: release instructions updated
* :ghissue:`679`: pysal.cg.sphere.fast_knn bug
* :ghissue:`681`: version bump for next dev cycle
* :ghissue:`680`: Rel1.10
v<1.10.0>, 2015-07-29
GitHub stats for 2015/01/31 - 2015/07/29
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 20 authors contributed 334 commits.
* Charlie Schmidt
* Dani Arribas-Bel
* Daniel Arribas-Bel
* David C. Folch
* David Folch
* Jay
* Levi John Wolf
* Marynia
* Philip Stephens
* Serge Rey
* Sergio Rey
* Taylor Oshan
* The Gitter Badger
* Wei Kang
* jay
* jlaura
* ljw
* ljwolf
* luc
* pedrovma
We closed a total of 156 issues, 58 pull requests and 98 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (58):
* :ghpull:`675`: Update README.md
* :ghpull:`673`: Adding init at pdutilities so they are importable
* :ghpull:`672`: ENH: option to locate legend
* :ghpull:`669`: add nonsudo travis
* :ghpull:`666`: Cleaned up conflicts in ref branch
* :ghpull:`664`: Lisa map
* :ghpull:`663`: Examples
* :ghpull:`661`: Reorganization of examples
* :ghpull:`657`: Assuncao test division errors
* :ghpull:`649`: Add a Gitter chat badge to README.md
* :ghpull:`647`: Addresses 646
* :ghpull:`645`: Update to weights module documentation for PySAL-REST
* :ghpull:`644`: removed test print statements from df2dbf
* :ghpull:`643`: using dtypes.name in df2dbf to avoid gotcha in type
* :ghpull:`642`: Updating copyright year
* :ghpull:`634`: allows non-symmetric distance matrices
* :ghpull:`641`: turning off generatetree
* :ghpull:`592`: adding check for version #591
* :ghpull:`636`: vertical line point simulation
* :ghpull:`639`: Snapping
* :ghpull:`640`: Add users to travis
* :ghpull:`627`: Networkrb
* :ghpull:`631`: Fixing typoes in analysis.py
* :ghpull:`626`: cast arrays over inconsistent kdtree return types
* :ghpull:`620`: adding explicit check for random region contiguity
* :ghpull:`619`: Fixing spreg's warnings
* :ghpull:`618`: initial folder with dbf utilities using pandas
* :ghpull:`616`: Adding isolation and theil indices to inequality._indices.py
* :ghpull:`615`: Network docs
* :ghpull:`614`: cleaning up pr testing
* :ghpull:`613`: test coverage to 98% on network
* :ghpull:`612`: small change for testing PR
* :ghpull:`611`: stubbed in minimal tests
* :ghpull:`607`: B603
* :ghpull:`602`: Documentation Extraction Notebook
* :ghpull:`606`: pct_nonzero was reporting a ratio not a percentage
* :ghpull:`604`: Contribpush
* :ghpull:`601`: Documentation Cleanup
* :ghpull:`599`: Casting bugfix from #598
* :ghpull:`600`: Updates for coveralls
* :ghpull:`598`: IO in Python 3
* :ghpull:`597`: Decoupling bbox from map_XXX_poly
* :ghpull:`595`: Removed testing line in travis.yml and added a .coveragerc file to manag...
* :ghpull:`590`: using numpy sum method
* :ghpull:`589`: Wconstructor
* :ghpull:`588`: Coveralls
* :ghpull:`585`: Fisher Jenks bug in `plot_choropleth`
* :ghpull:`584`: Alpha in plot chor
* :ghpull:`583`: Fixed 576
* :ghpull:`580`: working on #576
* :ghpull:`578`: Fixes #577
* :ghpull:`574`: Handle case where a region has a 0 share.
* :ghpull:`571`: Dict to unique value mapper
* :ghpull:`570`: numpy doc cleanup for weights module
* :ghpull:`569`: folium viz scripts
* :ghpull:`568`: inline with numpy doc spec (spatial_dynamics module)
* :ghpull:`567`: New/masterbump
* :ghpull:`566`: Fix for 1.9.0 missing file in setup.py
Issues (98):
* :ghissue:`675`: Update README.md
* :ghissue:`658`: Travis.CI """Legacy""" architecture
* :ghissue:`667`: Examples Not Found
* :ghissue:`673`: Adding init at pdutilities so they are importable
* :ghissue:`672`: ENH: option to locate legend
* :ghissue:`669`: add nonsudo travis
* :ghissue:`671`: Shapefile Read - PolygonM Attribute Error
* :ghissue:`670`: examples README markdown files reformatting
* :ghissue:`668`: Wconstructor
* :ghissue:`666`: Cleaned up conflicts in ref branch
* :ghissue:`664`: Lisa map
* :ghissue:`662`: Pep8
* :ghissue:`665`: Refs
* :ghissue:`663`: Examples
* :ghissue:`573`: Examples
* :ghissue:`661`: Reorganization of examples
* :ghissue:`656`: Assuncao rate improper division
* :ghissue:`657`: Assuncao test division errors
* :ghissue:`280`: handle multi-segment links in net_shp_io.py
* :ghissue:`649`: Add a Gitter chat badge to README.md
* :ghissue:`647`: Addresses 646
* :ghissue:`646`: arc distance in knnW
* :ghissue:`645`: Update to weights module documentation for PySAL-REST
* :ghissue:`644`: removed test print statements from df2dbf
* :ghissue:`643`: using dtypes.name in df2dbf to avoid gotcha in type
* :ghissue:`603`: Polygon.contains_point does not correctly process multipart polygons.
* :ghissue:`642`: Updating copyright year
* :ghissue:`623`: reading road shapfiles into network
* :ghissue:`608`: Scipy Sparse Graph
* :ghissue:`621`: network distance speedup
* :ghissue:`632`: network point snapping
* :ghissue:`633`: point to point distances on network
* :ghissue:`635`: simulating points on vertical lines
* :ghissue:`634`: allows non-symmetric distance matrices
* :ghissue:`641`: turning off generatetree
* :ghissue:`637`: speedup distance computations
* :ghissue:`592`: adding check for version #591
* :ghissue:`628`: Re-enable doctests
* :ghissue:`636`: vertical line point simulation
* :ghissue:`639`: Snapping
* :ghissue:`640`: Add users to travis
* :ghissue:`638`: Add users to Travis
* :ghissue:`627`: Networkrb
* :ghissue:`622`: New network branch from clean master
* :ghissue:`630`: NetworkG api is broken
* :ghissue:`631`: Fixing typoes in analysis.py
* :ghissue:`625`: Installation - Binstar and Anaconda
* :ghissue:`624`: Network topology
* :ghissue:`629`: changes to spreg tests for travis
* :ghissue:`166`: pysal.esda.mapclassify.Fisher_Jenks - local variable 'best' referenced before assignment
* :ghissue:`626`: cast arrays over inconsistent kdtree return types
* :ghissue:`596`: [question] unsupervised classification
* :ghissue:`620`: adding explicit check for random region contiguity
* :ghissue:`617`: Random_Region not respecting contiguity constraint
* :ghissue:`619`: Fixing spreg's warnings
* :ghissue:`618`: initial folder with dbf utilities using pandas
* :ghissue:`616`: Adding isolation and theil indices to inequality._indices.py
* :ghissue:`615`: Network docs
* :ghissue:`614`: cleaning up pr testing
* :ghissue:`613`: test coverage to 98% on network
* :ghissue:`612`: small change for testing PR
* :ghissue:`611`: stubbed in minimal tests
* :ghissue:`607`: B603
* :ghissue:`602`: Documentation Extraction Notebook
* :ghissue:`606`: pct_nonzero was reporting a ratio not a percentage
* :ghissue:`605`: RTree Weights
* :ghissue:`604`: Contribpush
* :ghissue:`601`: Documentation Cleanup
* :ghissue:`554`: Beginning documentation cleanup
* :ghissue:`599`: Casting bugfix from #598
* :ghissue:`600`: Updates for coveralls
* :ghissue:`598`: IO in Python 3
* :ghissue:`597`: Decoupling bbox from map_XXX_poly
* :ghissue:`595`: Removed testing line in travis.yml and added a .coveragerc file to manag...
* :ghissue:`586`: Look at using Coveralls
* :ghissue:`590`: using numpy sum method
* :ghissue:`589`: Wconstructor
* :ghissue:`588`: Coveralls
* :ghissue:`576`: Predecessor lists inconsistencies
* :ghissue:`585`: Fisher Jenks bug in `plot_choropleth`
* :ghissue:`584`: Alpha in plot chor
* :ghissue:`583`: Fixed 576
* :ghissue:`582`: Fixes #576
* :ghissue:`581`: Network
* :ghissue:`580`: working on #576
* :ghissue:`575`: Network from Lattice
* :ghissue:`578`: Fixes #577
* :ghissue:`577`: bug in FileIO.cast
* :ghissue:`574`: Handle case where a region has a 0 share.
* :ghissue:`343`: Edge Segmentation
* :ghissue:`571`: Dict to unique value mapper
* :ghissue:`570`: numpy doc cleanup for weights module
* :ghissue:`569`: folium viz scripts
* :ghissue:`568`: inline with numpy doc spec (spatial_dynamics module)
* :ghissue:`567`: New/masterbump
* :ghissue:`564`: Bug in setup.py
* :ghissue:`566`: Fix for 1.9.0 missing file in setup.py
* :ghissue:`565`: Bsetup
v<1.9.1>, 2015-01-31
GitHub stats for 2015/01/30 - 2015/01/31
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 4 authors contributed 14 commits.
* Dani Arribas-Bel
* Serge Rey
* Sergio Rey
* jlaura
We closed a total of 8 issues, 3 pull requests and 5 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (3):
* :ghpull:`566`: Fix for 1.9.0 missing file in setup.py
* :ghpull:`563`: Updating release instructions
* :ghpull:`561`: Rolling over to 1.10
Issues (5):
* :ghissue:`566`: Fix for 1.9.0 missing file in setup.py
* :ghissue:`565`: Bsetup
* :ghissue:`563`: Updating release instructions
* :ghissue:`562`: adjustments to release management
* :ghissue:`561`: Rolling over to 1.10
v<1.9.0>, 2015-01-30
GitHub stats for 2014/07/25 - 2015/01/30
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 12 authors contributed 131 commits.
* Andy Reagan
* Dani Arribas-Bel
* Jay
* Levi John Wolf
* Philip Stephens
* Qunshan
* Serge Rey
* jlaura
* ljwolf
* luc
We closed a total of 113 issues, 44 pull requests and 69 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (44):
* :ghpull:`560`: modifying import scheme for network module
* :ghpull:`559`: Network2
* :ghpull:`558`: Network2
* :ghpull:`557`: Network2
* :ghpull:`556`: Added analytical functions and edge segmentation
* :ghpull:`550`: Network2
* :ghpull:`553`: correction in denominator of spatial tau.
* :ghpull:`547`: Updates to get network integrated
* :ghpull:`544`: update .gitignore
* :ghpull:`543`: k nearest neighbor gwt example file for baltimore points (with k=4) added to examples directory
* :ghpull:`542`: new format nat_queen.gal file added to examples directory
* :ghpull:`541`: Update tutorial docs for new book
* :ghpull:`540`: doc: updating instructions for anaconda and enthought
* :ghpull:`539`: doc: pysal is now on sagemathcloud
* :ghpull:`538`: Clean up of cg and fixes of other doctests/formats
* :ghpull:`536`: adding entry for getis ord module
* :ghpull:`537`: new opendata module for contrib
* :ghpull:`535`: Add method for extracting data columns as Numpy array rather than list
* :ghpull:`534`: added geogrid to __all__ in sphere.py
* :ghpull:`533`: added geogrid function to create a grid of points on a sphere
* :ghpull:`532`: new functions to deal with spherical geometry: lat-lon conversion, degre...
* :ghpull:`530`: I390
* :ghpull:`528`: Replacing 0 by min value in choropleths
* :ghpull:`526`: B166
* :ghpull:`525`: copyright update
* :ghpull:`524`: New homogeneity tests for general case and spatial markov as a special case
* :ghpull:`523`: pointing to github.io pages
* :ghpull:`520`: Same typo. Toolkit.
* :ghpull:`518`: Update util.py
* :ghpull:`519`: Typo
* :ghpull:`517`: Documentation correction for Prais Conditional Mobility Index
* :ghpull:`516`: ENH for https://github.com/PySAL/PySAL.github.io/issues/17
* :ghpull:`515`: BUG: conditional check for extension of lower bound of colorbar to conta...
* :ghpull:`514`: ENH: adding the user_defined classification
* :ghpull:`513`: rewriting to not use ipython notebook --pylab=line
* :ghpull:`512`: Viz
* :ghpull:`508`: Adding barebones pysal2matplotlib options in viz
* :ghpull:`511`: DOC updating news
* :ghpull:`507`: Sched
* :ghpull:`510`: BUG: fix for #509
* :ghpull:`506`: 1.9dev
* :ghpull:`505`: REL bumping master to 1.9.0dev
* :ghpull:`504`: Release prep 1.8
* :ghpull:`503`: Grid for landing page
Issues (69):
* :ghissue:`560`: modifying import scheme for network module
* :ghissue:`559`: Network2
* :ghissue:`558`: Network2
* :ghissue:`557`: Network2
* :ghissue:`556`: Added analytical functions and edge segmentation
* :ghissue:`555`: Added edge segmentation by distance
* :ghissue:`550`: Network2
* :ghissue:`553`: correction in denominator of spatial tau.
* :ghissue:`549`: Network2
* :ghissue:`547`: Updates to get network integrated
* :ghissue:`548`: Installation Issues
* :ghissue:`546`: Network2
* :ghissue:`545`: Network
* :ghissue:`544`: update .gitignore
* :ghissue:`543`: k nearest neighbor gwt example file for baltimore points (with k=4) added to examples directory
* :ghissue:`542`: new format nat_queen.gal file added to examples directory
* :ghissue:`541`: Update tutorial docs for new book
* :ghissue:`540`: doc: updating instructions for anaconda and enthought
* :ghissue:`539`: doc: pysal is now on sagemathcloud
* :ghissue:`538`: Clean up of cg and fixes of other doctests/formats
* :ghissue:`536`: adding entry for getis ord module
* :ghissue:`537`: new opendata module for contrib
* :ghissue:`535`: Add method for extracting data columns as Numpy array rather than list
* :ghissue:`534`: added geogrid to __all__ in sphere.py
* :ghissue:`533`: added geogrid function to create a grid of points on a sphere
* :ghissue:`532`: new functions to deal with spherical geometry: lat-lon conversion, degre...
* :ghissue:`390`: add option to have local moran quadrant codes align with geoda
* :ghissue:`530`: I390
* :ghissue:`528`: Replacing 0 by min value in choropleths
* :ghissue:`526`: B166
* :ghissue:`176`: contrib module for proj 4
* :ghissue:`178`: contrib module for gdal/org
* :ghissue:`203`: implement network class in spatialnet
* :ghissue:`204`: pysal-networkx util functions
* :ghissue:`209`: csv reader enhancement
* :ghissue:`215`: Add a tutorial for the spreg module
* :ghissue:`244`: ps.knnW_from_shapefile returns wrong W ids when idVariable specified
* :ghissue:`246`: Only use idVariable in W when writing out to file
* :ghissue:`283`: Create new nodes at intersections of edges
* :ghissue:`291`: Enum links around regions hangs
* :ghissue:`292`: Handle multiple filaments within a region in the Wed construction
* :ghissue:`302`: Handle hole polygons when constructing wed
* :ghissue:`309`: Develop consistent solution for precision induced errors in doctests across platforms
* :ghissue:`350`: reading/writing weights file with spaces in the ids
* :ghissue:`450`: x_name and summary method not consistent in ols
* :ghissue:`521`: Nosetests don't accept setup.cfg
* :ghissue:`509`: ESDA bin type inconsistency
* :ghissue:`525`: copyright update
* :ghissue:`524`: New homogeneity tests for general case and spatial markov as a special case
* :ghissue:`523`: pointing to github.io pages
* :ghissue:`520`: Same typo. Toolkit.
* :ghissue:`522`: Nosetests for python3 porting
* :ghissue:`518`: Update util.py
* :ghissue:`519`: Typo
* :ghissue:`517`: Documentation correction for Prais Conditional Mobility Index
* :ghissue:`516`: ENH for https://github.com/PySAL/PySAL.github.io/issues/17
* :ghissue:`515`: BUG: conditional check for extension of lower bound of colorbar to conta...
* :ghissue:`514`: ENH: adding the user_defined classification
* :ghissue:`513`: rewriting to not use ipython notebook --pylab=line
* :ghissue:`512`: Viz
* :ghissue:`508`: Adding barebones pysal2matplotlib options in viz
* :ghissue:`511`: DOC updating news
* :ghissue:`507`: Sched
* :ghissue:`510`: BUG: fix for #509
* :ghissue:`502`: spreg.ml_lag.ML_Lag is very very very time-consuming?
* :ghissue:`506`: 1.9dev
* :ghissue:`505`: REL bumping master to 1.9.0dev
* :ghissue:`504`: Release prep 1.8
* :ghissue:`503`: Grid for landing page
v<1.8.0>, 2014-07-25
GitHub stats for 2014/01/29 - 2014/07/25
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 8 authors contributed 281 commits.
* Dani Arribas-Bel
* Jay
* Philip Stephens
* Serge Rey
* Sergio Rey
* jlaura
* pedrovma
* sjsrey
We closed a total of 160 issues, 60 pull requests and 100 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (60):
* :ghpull:`503`: Grid for landing page
* :ghpull:`501`: Two figs rather than three
* :ghpull:`500`: More efficient higher order operations
* :ghpull:`499`: renamed nat_queen.gal for #452
* :ghpull:`497`: ENH Deprecation warning for regime_weights #486
* :ghpull:`494`: Enables testing against two versions of SciPy shipped with the last two Ubuntu LTS versions.
* :ghpull:`490`: Fix for #487
* :ghpull:`492`: BUG cleaning up temporary files for #398
* :ghpull:`493`: Phil: Skipping several tests that fail due to precision under older scipy
* :ghpull:`489`: test suite fixes
* :ghpull:`488`: More tests to skip if scipy less than 11
* :ghpull:`484`: ENH: cleaning up more test generated files
* :ghpull:`483`: Forwarding Phil's commit: skipping doctests, conditional skip of unit tests
* :ghpull:`482`: DOC cleaning up files after running doctests #398
* :ghpull:`481`: DOC contrib updates and links
* :ghpull:`480`: DOC cleaning up doctests
* :ghpull:`479`: ENH Changing regime_weights to block_weights for #455
* :ghpull:`478`: DOC: link fixes
* :ghpull:`477`: cKDTree for #460
* :ghpull:`476`: redefining w.remap_ids to take only a single arg
* :ghpull:`475`: Adding docstrings and error check to fix #471
* :ghpull:`470`: fixing order of args for api consistency.
* :ghpull:`469`: Idfix for #449
* :ghpull:`463`: updating gitignore
* :ghpull:`462`: ENH: handle the case of an ergodic distribution where one state has 0 probability
* :ghpull:`458`: ENH: Vagrantfile for PySAL devs and workshops
* :ghpull:`447`: Clusterpy
* :ghpull:`456`: BUG: fix for #451 handling W or WSP in higher_order_sp
* :ghpull:`454`: Foobar
* :ghpull:`443`: Updating spreg: several minor bug and documentation fixes.
* :ghpull:`453`: Resolving conflicts
* :ghpull:`448`: Wsp
* :ghpull:`445`: ENH: unique qualitative color ramp. Also refactoring for future ipython deprecation of --pylab=inline
* :ghpull:`446`: Wmd
* :ghpull:`444`: Scipy dependency
* :ghpull:`442`: Wmd
* :ghpull:`441`: fixed kernel wmd for updated wmd structure
* :ghpull:`440`: ENH: sidebar for Releases and installation doc update
* :ghpull:`439`: - events
* :ghpull:`438`: ENH: pruning to respect flake8
* :ghpull:`437`: BUG: fix for removal of scipy.stat._support #436
* :ghpull:`433`: Rank markov
* :ghpull:`424`: testing
* :ghpull:`431`: FOSS4G
* :ghpull:`430`: Network
* :ghpull:`429`: moving analytics out of wed class and into their own module
* :ghpull:`428`: Network
* :ghpull:`427`: devel docs
* :ghpull:`425`: Viz2contrib
* :ghpull:`423`: Update news.rst
* :ghpull:`422`: ENH: Update doc instructions for napoleon dependency
* :ghpull:`421`: Adding files used in some examples as per Luc's request.
* :ghpull:`419`: Doc fixes 1.7
* :ghpull:`393`: Doc fixes 1.7
* :ghpull:`417`: ENH hex lattice W for #416
* :ghpull:`415`: Temporarily commenting out tests that are blocking Travis.
* :ghpull:`407`: Viz: Moving into contrib/viz in master
* :ghpull:`404`: version change
* :ghpull:`401`: fixes #388
* :ghpull:`402`: release changes
Issues (100):
* :ghissue:`503`: Grid for landing page
* :ghissue:`501`: Two figs rather than three
* :ghissue:`500`: More efficient higher order operations
* :ghissue:`452`: nat_queen.gal example file
* :ghissue:`499`: renamed nat_queen.gal for #452
* :ghissue:`486`: add a deprecation warning on regime_weights
* :ghissue:`497`: ENH Deprecation warning for regime_weights #486
* :ghissue:`449`: Lower order neighbor included in higher order
* :ghissue:`487`: Issue with w.weights when row-standardizing
* :ghissue:`398`: running test suite generates files
* :ghissue:`358`: Graph weights
* :ghissue:`338`: ENH: Move Geary's C calculations to Cython.
* :ghissue:`494`: Enables testing against two versions of SciPy shipped with the last two Ubuntu LTS versions.
* :ghissue:`490`: Fix for #487
* :ghissue:`492`: BUG cleaning up temporary files for #398
* :ghissue:`493`: Phil: Skipping several tests that fail due to precision under older scipy
* :ghissue:`489`: test suite fixes
* :ghissue:`485`: Revert "ENH: cleaning up more test generated files"
* :ghissue:`488`: More tests to skip if scipy less than 11
* :ghissue:`484`: ENH: cleaning up more test generated files
* :ghissue:`483`: Forwarding Phil's commit: skipping doctests, conditional skip of unit tests
* :ghissue:`482`: DOC cleaning up files after running doctests #398
* :ghissue:`481`: DOC contrib updates and links
* :ghissue:`480`: DOC cleaning up doctests
* :ghissue:`455`: regime weights vs block weights
* :ghissue:`479`: ENH Changing regime_weights to block_weights for #455
* :ghissue:`478`: DOC: link fixes
* :ghissue:`460`: Optimize KDTree
* :ghissue:`477`: cKDTree for #460
* :ghissue:`472`: Check for any side effects from new id remapping in w.sparse
* :ghissue:`473`: update all user space functions for new w.remap_ids
* :ghissue:`476`: redefining w.remap_ids to take only a single arg
* :ghissue:`263`: Transition to scipy.spatial.cKDTree from scipy.spatial.KDTree
* :ghissue:`414`: Travis build is killing nosetests
* :ghissue:`335`: Weights transformation docs
* :ghissue:`471`: add docstring example for w.remap_ids
* :ghissue:`475`: Adding docstrings and error check to fix #471
* :ghissue:`405`: ENH: Handling ids in W (Leave open for discussion)
* :ghissue:`470`: fixing order of args for api consistency.
* :ghissue:`469`: Idfix for #449
* :ghissue:`467`: redirect pysal.org to new dynamic landing page
* :ghissue:`466`: design the grid for the notebooks
* :ghissue:`464`: design new dynamic landing page for github.io
* :ghissue:`465`: move news out of docs and into dynamic landing page
* :ghissue:`468`: Move dynamic items out of sphinx docs and into dynamic landing page
* :ghissue:`463`: updating gitignore
* :ghissue:`451`: docs for higher_order_sp have wrong argument types
* :ghissue:`462`: ENH: handle the case of an ergodic distribution where one state has 0 probability
* :ghissue:`458`: ENH: Vagrantfile for PySAL devs and workshops
* :ghissue:`447`: Clusterpy
* :ghissue:`456`: BUG: fix for #451 handling W or WSP in higher_order_sp
* :ghissue:`457`: This is a test to see if pull request notifications get sent out to the list
* :ghissue:`454`: Foobar
* :ghissue:`443`: Updating spreg: several minor bug and documentation fixes.
* :ghissue:`453`: Resolving conflicts
* :ghissue:`412`: On travis and darwin test_ml_error_regimes.py hangs
* :ghissue:`448`: Wsp
* :ghissue:`435`: Will spatial durbin model be added in the near future?
* :ghissue:`445`: ENH: unique qualitative color ramp. Also refactoring for future ipython deprecation of --pylab=inline
* :ghissue:`446`: Wmd
* :ghissue:`444`: Scipy dependency
* :ghissue:`442`: Wmd
* :ghissue:`441`: fixed kernel wmd for updated wmd structure
* :ghissue:`440`: ENH: sidebar for Releases and installation doc update
* :ghissue:`439`: - events
* :ghissue:`438`: ENH: pruning to respect flake8
* :ghissue:`436`: Scipy 0.14 induced breakage
* :ghissue:`437`: BUG: fix for removal of scipy.stat._support #436
* :ghissue:`408`: Use of `platform.system()` to determine platform
* :ghissue:`403`: Scipy dependency
* :ghissue:`434`: W Object Metadata Attribute
* :ghissue:`433`: Rank markov
* :ghissue:`424`: testing
* :ghissue:`432`: Implementation of rank Markov classes
* :ghissue:`431`: FOSS4G
* :ghissue:`430`: Network
* :ghissue:`429`: moving analytics out of wed class and into their own module
* :ghissue:`420`: Local Moran's I, I Attribute Undefined
* :ghissue:`418`: Extended pysal.weights.user.build_lattice_shapefile
* :ghissue:`428`: Network
* :ghissue:`427`: devel docs
* :ghissue:`426`: dev docs
* :ghissue:`425`: Viz2contrib
* :ghissue:`423`: Update news.rst
* :ghissue:`422`: ENH: Update doc instructions for napoleon dependency
* :ghissue:`421`: Adding files used in some examples as per Luc's request.
* :ghissue:`419`: Doc fixes 1.7
* :ghissue:`393`: Doc fixes 1.7
* :ghissue:`416`: Add hexagonal lattice option for lat2W
* :ghissue:`417`: ENH hex lattice W for #416
* :ghissue:`409`: add wiki page on viz module design
* :ghissue:`413`: Temporary fix for https://github.com/pysal/pysal/issues/412
* :ghissue:`415`: Temporarily commenting out tests that are blocking Travis.
* :ghissue:`407`: Viz: Moving into contrib/viz in master
* :ghissue:`406`: Viz: pruning old code and adding more examples for TAZ paper
* :ghissue:`380`: Pep 8 and Line Length
* :ghissue:`404`: version change
* :ghissue:`401`: fixes #388
* :ghissue:`388`: update testing procedures docs
* :ghissue:`402`: release changes
v<1.7.0>, 2014-01-29
36d268f Philip Stephens -Merge pull request #400 from sjsrey/mldoc
c2c4741 Serge Rey -Formatting ml docs
685f5e3 Sergio Rey -Merge pull request #399 from sjsrey/master
481ccb4 Serge Rey -correct thanks
4a5cce3 Sergio Rey -Update index.txt
1fe7aeb Philip Stephens -Merge pull request #396 from sjsrey/mldoc
e731278 Serge Rey -EHN: fixing link to bleeding edge docs.
e4e9930 Serge Rey -ENH: adding ml docs to api
9b3c77e Serge Rey -Merge branch 'master' of github.com:pysal/pysal
dda3c01 Philip Stephens -Merge pull request #389 from dfolch/master
74b26d5 Philip Stephens -Merge pull request #392 from pedrovma/spreg17
b47ba84 pedrovma -Bump.
3d8504c Sergio Rey -Merge pull request #386 from pastephens/master
f9b59ea Philip Stephens -Merge branch 'master' of https://github.com/pysal/pysal
429e19e pedrovma -Upgrading to spreg 1.7.
c698747 David Folch -removing legacy speedup hack that is no longer relevant
88177d0 Sergio Rey -Merge pull request #387 from sjsrey/scipy13
64a4089 Serge Rey -BUG: sorting ijs for asymmetries
5539ef5 Sergio Rey -Merge pull request #1 from sjsrey/scipy13
8a86951 Serge Rey -BUG: fixes for scipy .0.9.0 to 0.13.0 induced errors
fe02796 Philip Stephens -tweaking travis to only run master commits
8c1fbe8 jlaura -Merge pull request #385 from sjsrey/docupdate
b71aedc Serge Rey -ENH: update date
4f237e4 Sergio Rey -Merge pull request #384 from sjsrey/moran
01da3be Serge Rey -ENH: Analytical p-values for Moran are two-tailed by default #337
918fe60 Philip Stephens -further travis tweaks
3920d73 Sergio Rey -Merge pull request #382 from sjsrey/st_docs
d90bc70 Serge Rey -DOC: updating refs for concordance algorithm
0db2790 Philip Stephens -tweaks to travis
063e057 Philip Stephens -upgrading scipy on travis
f90e742 Philip Stephens -Merge branch 'master' of https://github.com/pysal/pysal
edc9c07 Dani Arribas-Bel -Merge pull request #379 from sjsrey/b244
82479bb Serge Rey -BUG: fix for the comment https://github.com/pysal/pysal/issues/244#issuecomment-30055558
57ba485 jlaura -Update README.md
981ed31 Sergio Rey -Merge pull request #377 from darribas/master
3320c39 darribas -Changing cmap default in plot_choropleth so every type defaults to its own adecuate colormap
e063bee darribas -Fixing ignorance of argument cmap in base_choropleth_unique
1f10906 Dani Arribas-Bel -Merge pull request #375 from sjsrey/viz
94aa3e7 Dani Arribas-Bel -Merge pull request #376 from pedrovma/baltim_data
7568b0b pedrovma -Adding Baltimore example dataset for use with LM models.
5b23f89 Serge Rey -greys for classless map
d4eae1e Dani Arribas-Bel -Merge pull request #374 from sjsrey/viz
652440d Serge Rey -shrinking colorbar
c17bf67 Sergio Rey -Merge pull request #373 from darribas/master
a71c3cb darribas -Fixing minor conflict to merge darribas viz branch into darribas master
ec27e30 Dani Arribas-Bel -Merge pull request #372 from sjsrey/viz
8c03170 Serge Rey -option for resolution of output figs