From 333f19e09d000d2298cd178b4d50fce6fe3f75da Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 4 Apr 2011 20:26:20 +0200 Subject: [PATCH] Updated test dependency to virtualenv>=1.6. --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3209a3b7c..1d6d703a4 100644 --- a/setup.py +++ b/setup.py @@ -44,11 +44,8 @@ setup(name="pip", author_email='python-virtualenv@groups.google.com', url='http://www.pip-installer.org', license='MIT', - dependency_links=[ - 'https://github.com/pypa/virtualenv/tarball/master#egg=virtualenv-1.5.2.post2', - ], packages=['pip', 'pip.commands', 'pip.vcs'], entry_points=dict(console_scripts=['pip=pip:main', 'pip-%s=pip:main' % sys.version[:3]]), test_suite='nose.collector', - tests_require=['nose', 'virtualenv==1.5.2.post2', 'scripttest==1.1.1', 'mock'], + tests_require=['nose', 'virtualenv>=1.6', 'scripttest==1.1.1', 'mock'], zip_safe=False)