[Python-modules-commits] [tox] 52/69: Remove the virtualenv versioned requirements.
Barry Warsaw
barry at moszumanska.debian.org
Fri Sep 5 23:26:29 UTC 2014
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository tox.
commit db578010794aaad036b76a541e0b7b953fac7201
Author: Barry Warsaw <barry at debian.org>
Date: Tue Jun 17 16:05:44 2014 -0400
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 8e2f8f0..fb5c1b3 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
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/tox.git
More information about the Python-modules-commits
mailing list