We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 693b1be commit 90ce0cdCopy full SHA for 90ce0cd
.github/workflows/build_executables.yml
@@ -125,13 +125,14 @@ jobs:
125
126
- name: Install dependencies
127
run: |
128
- python3 -m pip install --upgrade pip
129
- python3 -m pip install -r requirements.txt
+ export PATH=/Users/runner/hostedtoolcache/Python/3.10.11/arm64/bin:$PATH
+ python3 -m pip install --platform macosx_10_9_universal2 --upgrade pip
130
+ python3 -m pip install --platform macosx_10_9_universal2 -r requirements.txt
131
132
- name: Build executable with PyInstaller
133
134
cd package
- python3 -m pyinstaller --noconfirm cogmood_mac.spec
135
+ python3 -m PyInstaller --noconfirm cogmood_mac.spec
136
137
- name: Upload macOS executable
138
uses: actions/upload-artifact@v4
0 commit comments