fix: path construction when testing Linux wheels on Windows hosts (#1573)

fix: path construction when testing linux wheels
This commit is contained in:
Mark Barsi-Siminszky
2023-08-14 08:30:33 +02:00
committed by GitHub
parent 26c5e18e62
commit 7508943e06
+1 -1
View File
@@ -185,7 +185,7 @@ def build_in_container(
constraints_file = build_options.dependency_constraints.get_for_python_version(
config.version
)
container_constraints_file = PurePath("/constraints.txt")
container_constraints_file = PurePosixPath("/constraints.txt")
container.copy_into(constraints_file, container_constraints_file)
dependency_constraint_flags = ["-c", container_constraints_file]