Skip to content

Commit fed1457

Browse files
author
Jeff Whitaker
committed
up version number to 1.0.3
1 parent d7c9f40 commit fed1457

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Changelog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
since version 1.0.2
1+
version 1.0.3 (not yet released)
2+
* fix bug in drawparallels that results in 'KeyError' when drawing
3+
parallels very close together (0.1 degrees).
24
* fix constant in Robinson projection (update PJ_robin.c
35
from proj4 svn).
46
* fix typo in setup.py (replace "!= ['sdist','clean']" with

lib/mpl_toolkits/basemap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
else:
4646
basemap_datadir = os.sep.join([os.path.dirname(__file__), 'data'])
4747

48-
__version__ = '1.0.2'
48+
__version__ = '1.0.3'
4949

5050
# supported map projections.
5151
_projnames = {'cyl' : 'Cylindrical Equidistant',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def checkversion(GEOS_dir):
111111

112112
setup(
113113
name = "basemap",
114-
version = "1.0.2",
114+
version = "1.0.3",
115115
description = "Plot data on map projections with matplotlib",
116116
long_description = """
117117
An add-on toolkit for matplotlib that lets you plot data

0 commit comments

Comments
 (0)