This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository python-descartes.
commit d1d773f15f35ae9d4b3e889ecea9682499252ed4 Author: Bas Couwenberg <[email protected]> Date: Sat Feb 20 15:29:13 2016 +0100 Imported Upstream version 1.0.2 --- PKG-INFO | 2 +- descartes.egg-info/PKG-INFO | 2 +- descartes/patch.py | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PKG-INFO b/PKG-INFO index c1ca2fd..c1279c9 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: descartes -Version: 1.0.1 +Version: 1.0.2 Summary: Use geometric objects as matplotlib paths and patches Home-page: http://bitbucket.org/sgillies/descartes/ Author: Sean Gillies diff --git a/descartes.egg-info/PKG-INFO b/descartes.egg-info/PKG-INFO index c1ca2fd..c1279c9 100644 --- a/descartes.egg-info/PKG-INFO +++ b/descartes.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: descartes -Version: 1.0.1 +Version: 1.0.2 Summary: Use geometric objects as matplotlib paths and patches Home-page: http://bitbucket.org/sgillies/descartes/ Author: Sean Gillies diff --git a/descartes/patch.py b/descartes/patch.py index 34686f7..480b137 100644 --- a/descartes/patch.py +++ b/descartes/patch.py @@ -41,8 +41,8 @@ def PolygonPath(polygon): vals[0] = Path.MOVETO return vals vertices = concatenate( - [asarray(this.exterior)] - + [asarray(r) for r in this.interiors]) + [asarray(this.exterior)[:, :2]] + + [asarray(r)[:, :2] for r in this.interiors]) codes = concatenate( [coding(this.exterior)] + [coding(r) for r in this.interiors]) diff --git a/setup.py b/setup.py index 4d05b5a..891893e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import warnings from setuptools import setup, find_packages -version = '1.0.1' +version = '1.0.2' description = open('README.txt', 'r').read() setup(name='descartes', -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/python-descartes.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

