Skip to content

Commit

Permalink
fix: handle platform-specific dependencies in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkShawn2020 committed Dec 17, 2024
1 parent 1e620ed commit af751b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Remove macOS-specific dependencies for Linux/Windows
if: matrix.os != 'macos-latest'
run: |
poetry remove --without-dev pyobjc-framework-cocoa pyobjc-framework-quartz pyobjc-framework-applicationservices pyobjc-framework-coretext || true
- name: Install dependencies
run: poetry install --with dev

Expand Down

0 comments on commit af751b6

Please sign in to comment.