Skip to content

Commit

Permalink
blender_manifest: write wheel paths in posix style
Browse files Browse the repository at this point in the history
  • Loading branch information
howetuft committed Jan 2, 2025
1 parent 5810b94 commit b00510a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
print("here")
import tempfile
import platform
import os
Expand Down Expand Up @@ -59,7 +58,10 @@ def install_pyluxcore():
# Setup manifest with wheel list
manifest_path = root_folder / "blender_manifest.toml"
files, *_ = os.walk(wheel_folder)
wheels = [os.path.join(".", "wheels", f) for f in files[2]]
wheels = [
pathlib.Path(".", "wheels", f).as_posix()
for f in files[2]
]
wheel_statement = f"\nwheels = {wheels}\n"
print(wheel_statement)

Expand Down

0 comments on commit b00510a

Please sign in to comment.