summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorStéphane Blondon <stephane.blondon@gmail.com>2022-08-25 20:47:43 +0200
committerStéphane Blondon <stephane.blondon@gmail.com>2022-08-25 20:48:09 +0200
commitac7a0ddd49fc2a520dc498526e4feaebfbfeaadd (patch)
tree18d05b55946c2c6714a22f8459a10bad2fec7aea /setuptools/command
parent92ebeed732b08ac29576634ad4814b9efd07bb37 (diff)
downloadpython-setuptools-git-ac7a0ddd49fc2a520dc498526e4feaebfbfeaadd.tar.gz
remove python2 cases
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py
index 652f3e4a..8dde513c 100644
--- a/setuptools/command/test.py
+++ b/setuptools/command/test.py
@@ -118,7 +118,7 @@ class test(Command):
return list(self._test_args())
def _test_args(self):
- if not self.test_suite and sys.version_info >= (2, 7):
+ if not self.test_suite:
yield 'discover'
if self.verbose:
yield '--verbose'