Skip to content

Commit af4d3b2

Browse files
committed
Attempts excplicit pip install for each architecture
1 parent 3acbe2a commit af4d3b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build_executables.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
- name: Install dependencies
9898
run: |
9999
python -m pip install --upgrade pip
100-
pip install -r requirements.txt
100+
arch -x86_64 pip install --no-binary :all: -r requirements.txt
101+
arch -arm64 pip install --no-binary :all: -r requirements.txt
101102
102103
- name: Build executable with PyInstaller
103104
run: |

0 commit comments

Comments
 (0)