We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa719b commit 5950f43Copy full SHA for 5950f43
tests/test_py39compat.py
@@ -14,8 +14,7 @@
14
15
class OldStdlibFinderTests(fixtures.DistInfoPkgOffPath, unittest.TestCase):
16
def setUp(self):
17
- python_version = sys.version_info[:2]
18
- if python_version < (3, 8) or python_version > (3, 9):
+ if sys.version_info >= (3, 10):
19
self.skipTest("Tests specific for Python 3.8/3.9")
20
super().setUp()
21
0 commit comments