Skip to content

Commit ec6af1f

Browse files
committed
Fix failing test
1 parent 9fc465a commit ec6af1f

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)