8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, s 8000 ee our documentation.
There was an error while loading. Please reload this page.
1 parent a41b8ca commit 2f9c9cfCopy full SHA for 2f9c9cf
python/pip_install/tools/dependency_resolver/dependency_resolver.py
@@ -25,6 +25,8 @@
25
# Replace the os.replace function with shutil.copy to work around os.replace not being able to
26
# replace or move files across filesystems.
27
os.replace = shutil.copy
28
+# We make sure that the separator used by all platforms is the same when joining paths.
29
+os.path._get_sep = lambda path: b"/" if isinstance(path, bytes) else "/"
30
31
32
def _select_golden_requirements_file(
0 commit comments