Skip to content

Commit 6a64635

Browse files
committed
Fix condition post-merge
1 parent b9f22ea commit 6a64635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/compilers/C/tests/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _make_strs(paths):
1515
"""
1616
Convert paths to strings for legacy compatibility.
1717
"""
18-
if sys.version_info > (3, 8) and platform.system() != "Windows":
18+
if sys.version_info >= (3, 8) and platform.system() != "Windows":
1919
return paths
2020
return list(map(os.fspath, paths))
2121

0 commit comments

Comments
 (0)