Skip to content

Commit

Permalink
Remove legacy logic for Python 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 20, 2024
1 parent f60f041 commit 4c257e5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_py39compat.py
Expand Up @@ -14,8 +14,7 @@

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

Expand Down

0 comments on commit 4c257e5

Please sign in to comment.