Skip to content

Commit aebb36c

Browse files
committed
Fix installing python dependencies on x86 MacOS
1 parent 4dbaf5b commit aebb36c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nightlies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
- name: brew install dependencies
138138
run: brew install coreutils
139139
- name: pip install dependencies
140-
run: pip3 install --upgrade cloudsmith-cli
140+
run: pip3 install --break-system-packages --upgrade cloudsmith-cli
141141
- name: Build and upload
142142
run: |
143143
export PATH="/tmp/ponyc/bin/:/Library/Frameworks/Python.framework/Versions/3.11/bin/:$PATH"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
- name: brew install dependencies
8585
run: brew install coreutils
8686
- name: pip install dependencies
87-
run: pip3 install --upgrade cloudsmith-cli
87+
run: pip3 install --break-system-packages --upgrade cloudsmith-cli
8888
- name: Build and upload
8989
run: |
9090
export PATH="/tmp/ponyc/bin/:/Library/Frameworks/Python.framework/Versions/3.11/bin/:$PATH"

0 commit comments

Comments
 (0)