This commit is contained in:
2026-01-01 15:05:29 -06:00
parent 65044a54ef
commit 716007802e
147 changed files with 40416 additions and 27 deletions

13
scripts/move_wheels.py Normal file
View File

@@ -0,0 +1,13 @@
"""Move Poetry-built wheels from dist/ to python-dist/ to avoid conflicts
with Electron build artifacts.
"""
import shutil
from pathlib import Path
dist = Path("dist")
target = Path("python-dist")
target.mkdir(parents=True, exist_ok=True)
for wheel in dist.glob("*.whl"):
shutil.move(str(wheel), target / wheel.name)