diff --git a/pundle.py b/pundle.py index 7d8d516..2b1ba78 100644 --- a/pundle.py +++ b/pundle.py @@ -972,6 +972,8 @@ def entry_points(): d = r.frozen_dist() if not d: continue + if isinstance(d, VCSDist): + continue scripts = d.get_entry_map().get('console_scripts', {}) for name in scripts: entries[name] = d diff --git a/setup.py b/setup.py index d0bb6f9..3d7753b 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(fname): setupconf = dict( name='pundle', - version='0.9.0-alpha.02', + version='0.9.1', license='BSD', url='https://github.com/Deepwalker/pundler/', author='Deepwalker',