File tree Expand file tree Collapse file tree 3 files changed +39
-3
lines changed
Expand file tree Collapse file tree 3 files changed +39
-3
lines changed Original file line number Diff line number Diff line change 11# Changes
22
3+ # Version 1.1.3 (2020-03-18)
4+
5+ We closed a total of 15 issues (enhancements and bug fixes) through 6 pull requests, since our last release on 2020-01-18.
6+
7+ ## Issues Closed
8+ - add permanent links to current version of no's to joss paper (#102 )
9+ - [ BUG] set colors as list in _ plot_choropleth_fig() (#101 )
10+ - Remove the links around figures in the JOSS paper (#99 )
11+ - Release prep for 1.1.2 (#98 )
12+ - Installation instructions; pip install fails on macOS (#88 )
13+ - Usage in readme is a fragment (#90 )
14+ - JOSS: missing figure captions (#92 )
15+ - [ DOC] update installation instruction (#96 )
16+ - [ DOC] add example links to README.md & figure captions in joss article (#97 )
17+
18+ ## Pull Requests
19+ - add permanent links to current version of no's to joss paper (#102 )
20+ - [ BUG] set colors as list in _ plot_choropleth_fig() (#101 )
21+ - Remove the links around figures in the JOSS paper (#99 )
22+ - Release prep for 1.1.2 (#98 )
23+ - [ DOC] update installation instruction (#96 )
24+ - [ DOC] add example links to README.md & figure captions in joss article (#97 )
25+
26+ The following individuals contributed to this release:
27+
28+ - Stefanie Lumnitz
29+ - Levi John Wolf
30+ - Leonardo Uieda
31+ - Serge Rey
32+
333# Version 1.1.2 (2020-01-18)
434
535We closed a total of 33 issues (enhancements and bug fixes) through 13 pull requests, since our last release on 2019-07-13.
Original file line number Diff line number Diff line change 11from setuptools import setup
22from os import path
33
4+ package = "splot"
5+
6+ # Get __version__ from package/__init__.py
7+ with open (package + "/__init__.py" , "r" ) as f :
8+ exec (f .readline ())
9+
410def _get_requirements_from_files (groups_files ):
511 groups_reqlist = {}
612
@@ -25,8 +31,8 @@ def _get_requirements_from_files(groups_files):
2531with open (path .join (this_directory , 'README.md' ), encoding = 'utf-8' ) as f :
2632 long_description = f .read ()
2733
28- setup (name = 'splot' , #name of package
29- version = '1.1.2' ,
34+ setup (name = package , #name of package
35+ version = __version__ ,
3036 description = 'Visual analytics for spatial analysis with PySAL.' ,
3137 long_description = long_description ,
3238 long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 1- __version__ = "1.1.2 "
1+ __version__ = "1.1.3 "
22# __version__ has to be defined in the first line
33
44
You can’t perform that action at this time.
0 commit comments