Skip to content

Commit 5950f43

Browse files
committed
Remove legacy logic for Python 3.7.
1 parent ffa719b commit 5950f43

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_py39compat.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
class OldStdlibFinderTests(fixtures.DistInfoPkgOffPath, unittest.TestCase):
1616
def setUp(self):
17-
python_version = sys.version_info[:2]
18-
if python_version < (3, 8) or python_version > (3, 9):
17+
if sys.version_info >= (3, 10):
1918
self.skipTest("Tests specific for Python 3.8/3.9")
2019
super().setUp()
2120

0 commit comments

Comments
 (0)