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 b9f22ea commit 6a64635Copy full SHA for 6a64635
distutils/compilers/C/tests/test_base.py
@@ -15,7 +15,7 @@ def _make_strs(paths):
15
"""
16
Convert paths to strings for legacy compatibility.
17
18
- if sys.version_info > (3, 8) and platform.system() != "Windows":
+ if sys.version_info >= (3, 8) and platform.system() != "Windows":
19
return paths
20
return list(map(os.fspath, paths))
21
0 commit comments