Skip to content

Commit ae15baa

Browse files
authored
Merge pull request pypa/distutils#331 from Avasam/Fix-failing-test
Fix failing Ruff test
2 parents 9fc465a + ec6af1f commit ae15baa

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)