Skip to content

Commit 69c7c66

Browse files
authored
Merge pull request #74 from slumnitz/rel1.1.0
Rel1.1.0
2 parents 8b34043 + 3fc4ac7 commit 69c7c66

File tree

4 files changed

+261
-193
lines changed

4 files changed

+261
-193
lines changed

CHANGELOG.md

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,77 @@
11
# Changes
22

3-
Version 1.0.0 (2018-11-30)
3+
# Version 1.1.0 (2019-06-27)
4+
5+
We closed a total of 54 issues (enhancements and bug fixes) through 21 pull requests, since our last release on 2018-11-13.
6+
7+
## Issues Closed
8+
- LISA cluster map colours mixed when cluster value not present (#72)
9+
- [ENH] select colour by presence of value in list in `mask_local_auto` (#73)
10+
- Moran Scatterplots with equal bounds on X and Y axes? (#51)
11+
- Add aspect_equal argument to Moran functionality (#70)
12+
- set up dual travis tests for pysal dependencies (pip and github) (#69)
13+
- API changes of mapclassify propagate to splot (#65)
14+
- [DOC] include rtree and descartes in `requirements_dev.txt` (#68)
15+
- Readme update (#67)
16+
- docs building using readthedocs.yml version 2 (#64)
17+
- [DOC] add test for missing code cove % (#57)
18+
- Add tests for warnings and ValueErrors (#61)
19+
- Update travis for testing (#1)
20+
- travis ci testing: migrate from 3.5 and 3.6 to 3.6 and 3.7 (#63)
21+
- create paper directory (#58)
22+
- clean and rerun notebooks (#56)
23+
- `vba_choropleth` API (#45)
24+
- allow string (default) in vba_choropleth function of tests (#52)
25+
- migrating to readthedocs II (#54)
26+
- migration to readthedocs (#53)
27+
- Make docs (#46)
28+
- Segmentation fault in running tests on TravisCI (#47)
29+
- code 139 memory segmentation fault: RESOLVED (#48)
30+
- pip install on linux fails on pyproj (#41)
31+
- update archaic Miniconda build (#44)
32+
- adjusting markdown font (#43)
33+
- add `moran_facette` functionality and merge `esda.moran` plots to `moran_scatterplot` (#27)
34+
- (ENH) speed up plot_spatial_weights for plotting spatial weights (#42)
35+
- Travis testing against esda and giddy master branch (#31)
36+
- 1.0.0 Release (#40)
37+
- merge Sprint with master branch (#39)
38+
- Change documentation style (#38)
39+
- add travis build badge to README.md (#37)
40+
- fix current documentation for sprint (#36)
41+
42+
## Pull Requests
43+
- [ENH] select colour by presence of value in list in `mask_local_auto` (#73)
44+
- Add aspect_equal argument to Moran functionality (#70)
45+
- set up dual travis tests for pysal dependencies (pip and github) (#69)
46+
- Readme update (#67)
47+
- docs building using readthedocs.yml version 2 (#64)
48+
- Add tests for warnings and ValueErrors (#61)
49+
- travis ci testing: migrate from 3.5 and 3.6 to 3.6 and 3.7 (#63)
50+
- create paper directory (#58)
51+
- clean and rerun notebooks (#56)
52+
- allow string (default) in vba_choropleth function of tests (#52)
53+
- migrating to readthedocs II (#54)
54+
- migration to readthedocs (#53)
55+
- Make docs (#46)
56+
- code 139 memory segmentation fault: RESOLVED (#48)
57+
- update archaic Miniconda build (#44)
58+
- adjusting markdown font (#43)
59+
- (ENH) speed up plot_spatial_weights for plotting spatial weights (#42)
60+
- 1.0.0 Release (#40)
61+
- merge Sprint with master branch (#39)
62+
- Change documentation style (#38)
63+
- fix current documentation for sprint (#36)
64+
65+
The following individuals contributed to this release:
66+
67+
- Stefanie Lumnitz
68+
- Wei Kang
69+
- James Gaboardi
70+
- Renanxcortes
71+
- Dani Arribas-Bel
72+
73+
74+
# Version 1.0.0 (2018-11-30)
475

576
We closed a total of 52 issues (enhancements and bug fixes) through 23 pull requests, since our last release on 2017-05-09.
677

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def _get_requirements_from_files(groups_files):
2020
extras_reqs = reqs
2121

2222
setup(name='splot', #name of package
23-
version='1.0.0',
24-
description= 'plotting for PySAL',
23+
version='1.1.0',
24+
description= 'Visual analytics for spatial analysis with PySAL.',
2525
url= 'https://github.com/pysal/splot',
2626
maintainer= 'Serge Rey, Stefanie Lumnitz',
2727
maintainer_email= '[email protected], [email protected]',
@@ -37,7 +37,6 @@ def _get_requirements_from_files(groups_files):
3737
'Topic :: Scientific/Engineering :: GIS',
3838
'License :: OSI Approved :: BSD License',
3939
'Programming Language :: Python',
40-
'Programming Language :: Python :: 3.5',
4140
'Programming Language :: Python :: 3.6',
4241
'Programming Language :: Python :: 3.7'
4342
],

splot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.1.0"
22
# __version__ has to be defined in the first line
33

44

0 commit comments

Comments
 (0)