There was an error while loading. Please reload this page.
1 parent 071e76a commit 29a2594Copy full SHA for 29a2594
1 file changed
.github/workflows/release.yml
@@ -78,7 +78,12 @@ jobs:
78
79
- name: Build macOS installer
80
run: |
81
- cd installer && uv run python setup.py bdist_mac
+ cd installer
82
+ uv pip install -e "..[dev]"
83
+ # Use system Python paths to match local environment
84
+ PYTHONHOME=/Library/Frameworks/Python.framework/Versions/3.12 \
85
+ PYTHONPATH=/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12 \
86
+ uv run python setup.py bdist_mac
87
xattr -dr com.apple.quarantine "build/Basic Memory Installer.app"
88
89
- name: Zip macOS installer
0 commit comments