1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Prevent installation of virtualenv-X.Y since we're not
providing these for every supported version.
Author: Barry Warsaw <barry@debian.org>
Forwarded: no
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,6 @@
'entry_points': {
'console_scripts': [
'virtualenv=virtualenv:main',
- 'virtualenv-%s.%s=virtualenv:main' % sys.version_info[:2]
],
},
'zip_safe': False,
|