[Python-modules-commits] [tox] 05/18: Remove the virtualenv versioned requirements.
Barry Warsaw
barry at moszumanska.debian.org
Tue Apr 28 17:44:44 UTC 2015
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository tox.
commit 61e94dd7916770be9b3ab358566c04a83eda05f9
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 | 4 ----
tox.egg-info/requires.txt | 1 -
2 files changed, 5 deletions(-)
diff --git a/setup.py b/setup.py
index e14f7aa..2128481 100644
--- a/setup.py
+++ b/setup.py
@@ -18,9 +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):
- install_requires += ['argparse']
setup(
name='tox',
description='virtualenv-based automation of test activities',
@@ -37,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