From 0b9cb617061738fefc7d01e6e53d431a10be2a1b Mon Sep 17 00:00:00 2001
From: Barry Warsaw <barry@debian.org>
Date: Tue, 17 Jun 2014 16:05:44 -0400
Subject: Remove the virtualenv versioned requirements.

 We'll ensure that the proper dependencies are available via Depends, but
 the requires.txt line tries to do an import to verify the requirement, and
 we don't build the Python 3 version of virtualenv yet.
Forwarded: not-needed

Patch-Name: hack-requires.patch
---
 setup.py                  | 6 ------
 tox.egg-info/requires.txt | 1 -
 2 files changed, 7 deletions(-)

diff --git a/setup.py b/setup.py
index 3a9f9bc..44e8299 100644
--- a/setup.py
+++ b/setup.py
@@ -18,11 +18,6 @@ class Tox(TestCommand):
 
 def main():
     version = sys.version_info[:2]
-    install_requires = ['virtualenv>=1.11.2', 'py>=1.4.17', ]
-    if version < (2, 7) or (3, 0) <= version <= (3, 1):
-        install_requires += ['argparse']
-    if version < (2,6):
-        install_requires += ["simplejson"]
     setup(
         name='tox',
         description='virtualenv-based automation of test activities',
@@ -39,7 +34,6 @@ def main():
         # "deps" definition for the required dependencies
         tests_require=['tox'],
         cmdclass={"test": Tox},
-        install_requires=install_requires,
         classifiers=[
             'Development Status :: 5 - Production/Stable',
             'Intended Audience :: Developers',
diff --git a/tox.egg-info/requires.txt b/tox.egg-info/requires.txt
index 82f5918..2219bdb 100644
--- a/tox.egg-info/requires.txt
+++ b/tox.egg-info/requires.txt
@@ -1,2 +1 @@
-virtualenv>=1.11.2
 py>=1.4.17
