Skip to content

Commit ac7a0dd

Browse files
committed
remove python2 cases
1 parent 92ebeed commit ac7a0dd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

setuptools/command/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_args(self):
118118
return list(self._test_args())
119119

120120
def _test_args(self):
121-
if not self.test_suite and sys.version_info >= (2, 7):
121+
if not self.test_suite:
122122
yield 'discover'
123123
if self.verbose:
124124
yield '--verbose'

setuptools/monkey.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ def patch_all():
7171
distutils.filelist.findall = setuptools.findall
7272

7373
needs_warehouse = (
74-
sys.version_info < (2, 7, 13)
75-
or
7674
(3, 4) < sys.version_info < (3, 4, 6)
7775
or
7876
(3, 5) < sys.version_info <= (3, 5, 3)

0 commit comments

Comments
 (0)