forked from wylab/wylab-station-14
fix: add --break-system-packages to pip install in publish workflows
Ubuntu 23.04+ uses PEP 668 to protect system Python packages. The --break-system-packages flag allows pip to install in externally-managed environments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -45,7 +45,7 @@ jobs:
|
||||
run: dotnet run --project Content.Packaging client --no-wipe-release
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: pip install requests
|
||||
run: pip install --break-system-packages requests
|
||||
|
||||
- name: Publish version
|
||||
run: Tools/publish_multi_request.py
|
||||
|
||||
@@ -42,7 +42,7 @@ jobs:
|
||||
run: dotnet run --project Content.Packaging client --no-wipe-release
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: pip install requests
|
||||
run: pip install --break-system-packages requests
|
||||
|
||||
- name: Publish version
|
||||
run: Tools/publish_multi_request.py --fork-id wizards-testing
|
||||
|
||||
Reference in New Issue
Block a user