Skip to content

Commit

Permalink
Bugfix: Add missing setuptools (#234)
Browse files Browse the repository at this point in the history
Pipeline was not passing due to new Python 3.12 version that does not
have distutils package.
  • Loading branch information
Mikescops committed Apr 8, 2024
1 parent 4defe33 commit 0d354e3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/manual-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
with:
node-version: 18.x

- if: matrix.settings.host == 'macos-14'
run: brew install python-setuptools
- if: matrix.settings.host == 'macos-12'
run: pip install setuptools
- run: yarn
- run: yarn run build
# remove dev dependencies before packaging
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
with:
node-version: 18.x

- if: matrix.settings.host == 'macos-14'
run: brew install python-setuptools
- if: matrix.settings.host == 'macos-12'
run: pip install setuptools
- run: yarn
- run: yarn run build
# remove dev dependencies before packaging
Expand Down

0 comments on commit 0d354e3

Please sign in to comment.