Skip to content

Commit 7508943

Browse files
authored
fix: path construction when testing Linux wheels on Windows hosts (#1573)
fix: path construction when testing linux wheels
1 parent 26c5e18 commit 7508943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cibuildwheel/linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def build_in_container(
185185
constraints_file = build_options.dependency_constraints.get_for_python_version(
186186
config.version
187187
)
188-
container_constraints_file = PurePath("/constraints.txt")
188+
container_constraints_file = PurePosixPath("/constraints.txt")
189189

190190
container.copy_into(constraints_file, container_constraints_file)
191191
dependency_constraint_flags = ["-c", container_constraints_file]

0 commit comments

Comments
 (0)