Skip to content

Commit

Permalink
remove python2 cases
Browse files Browse the repository at this point in the history
  • Loading branch information
sblondon committed Aug 25, 2022
1 parent 92ebeed commit ac7a0dd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion setuptools/command/test.py
Expand Up @@ -118,7 +118,7 @@ def test_args(self):
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'
Expand Down
2 changes: 0 additions & 2 deletions setuptools/monkey.py
Expand Up @@ -71,8 +71,6 @@ def patch_all():
distutils.filelist.findall = setuptools.findall

needs_warehouse = (
sys.version_info < (2, 7, 13)
or
(3, 4) < sys.version_info < (3, 4, 6)
or
(3, 5) < sys.version_info <= (3, 5, 3)
Expand Down

0 comments on commit ac7a0dd

Please sign in to comment.