ci: fix macOS pip externally-managed-environment error

Add --break-system-packages flag to pip3 install command
for macOS runners where Python is managed by Homebrew.
This commit is contained in:
2025-12-26 13:59:42 +03:00
parent d3913b40b9
commit 0e9d70184d
+2 -1
View File
@@ -408,7 +408,8 @@ jobs:
- name: install solc
run: |
# Install solc-select to manage solc versions
pip3 install solc-select
# Use --break-system-packages for macOS externally-managed Python
pip3 install --break-system-packages solc-select
# Install and use solc 0.8.30 (revive only supports up to 0.8.30)
solc-select install 0.8.30
solc-select use 0.8.30