[Python-modules-commits] [tox] 03/08: Remove the virtualenv versioned requirements.
Barry Warsaw
barry at moszumanska.debian.org
Fri Sep 26 20:57:16 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 0b9cb617061738fefc7d01e6e53d431a10be2a1b
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 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
--
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