8000
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 602d035 commit 768399bCopy full SHA for 768399b
sklearn/_build_utils/__init__.py
@@ -42,7 +42,7 @@ def get_cython_source(filename):
42
is_cpp_filename = filename.endswith('.cpp')
43
44
# files in src are .c and .cpp files that are not cython-generated
45
- if 'src/' in filename and (is_c_filename or is_cpp_filename):
+ if ('src' + os.sep) in filename and (is_c_filename or is_cpp_filename):
46
return filename
47
elif is_c_filename:
48
filename = filename[:-1]
0 commit comments